Skip to content

Commit 7173455

Browse files
committed
[pom] Use more props for versions so we can get less PRs from renovate
1 parent 1081c8d commit 7173455

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

pom.xml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@
134134
<byte-buddy.version>1.14.10</byte-buddy.version>
135135
<derby.version>10.17.1.0</derby.version>
136136
<log4j.version>2.22.0</log4j.version>
137+
<mockito.version>5.8.0</mockito.version>
137138
<mssql-jdbc.version>12.4.2.jre11</mssql-jdbc.version>
139+
<testcontainers.version>1.19.3</testcontainers.version>
138140

139141
<!-- Add slow test groups here and annotate classes similar to @Tag('groupName'). -->
140142
<!-- Excluded groups are ran on github ci, to force here, pass -d"excludedGroups=" -->
@@ -226,19 +228,19 @@
226228
<dependency>
227229
<groupId>org.mockito</groupId>
228230
<artifactId>mockito-core</artifactId>
229-
<version>5.8.0</version>
231+
<version>${mockito.version}</version>
230232
<scope>test</scope>
231233
</dependency>
232234
<dependency>
233235
<groupId>org.mockito</groupId>
234236
<artifactId>mockito-subclass</artifactId>
235-
<version>5.8.0</version>
237+
<version>${mockito.version}</version>
236238
<scope>test</scope>
237239
</dependency>
238240
<dependency>
239241
<groupId>org.mockito</groupId>
240242
<artifactId>mockito-junit-jupiter</artifactId>
241-
<version>5.8.0</version>
243+
<version>${mockito.version}</version>
242244
<scope>test</scope>
243245
</dependency>
244246
<dependency>
@@ -287,19 +289,19 @@
287289
<dependency>
288290
<groupId>org.testcontainers</groupId>
289291
<artifactId>junit-jupiter</artifactId>
290-
<version>1.19.3</version>
292+
<version>${testcontainers.version}</version>
291293
<scope>test</scope>
292294
</dependency>
293295
<dependency>
294296
<groupId>org.testcontainers</groupId>
295297
<artifactId>postgresql</artifactId>
296-
<version>1.19.3</version>
298+
<version>${testcontainers.version}</version>
297299
<scope>test</scope>
298300
</dependency>
299301
<dependency>
300302
<groupId>org.testcontainers</groupId>
301303
<artifactId>mysql</artifactId>
302-
<version>1.19.3</version>
304+
<version>${testcontainers.version}</version>
303305
<scope>test</scope>
304306
</dependency>
305307
<!-- For javadoc link -->

0 commit comments

Comments
 (0)