|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" |
2 |
| - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
4 | 2 | <parent>
|
5 | 3 | <groupId>org.sonatype.oss</groupId>
|
6 | 4 | <artifactId>oss-parent</artifactId>
|
|
50 | 48 | <github.global.server>github</github.global.server>
|
51 | 49 | <slf4j.version>1.7.36</slf4j.version>
|
52 | 50 | <jedis.module.name>redis.clients.jedis</jedis.module.name>
|
53 |
| - <junit.version>4.13.2</junit.version> |
54 | 51 | <gzoltar.version>1.7.3</gzoltar.version>
|
55 |
| - <surefire.version>3.1.0</surefire.version> |
56 |
| - <jacoco.version>0.8.5</jacoco.version> |
57 | 52 | <resilience4j.version>1.7.1</resilience4j.version>
|
58 | 53 | </properties>
|
59 | 54 |
|
|
82 | 77 | <dependency>
|
83 | 78 | <groupId>junit</groupId>
|
84 | 79 | <artifactId>junit</artifactId>
|
85 |
| - <version>${junit.version}</version> |
| 80 | + <version>4.13.2</version> |
86 | 81 | <scope>test</scope>
|
87 | 82 | </dependency>
|
88 | 83 | <dependency>
|
|
171 | 166 | <plugin>
|
172 | 167 | <groupId>org.jacoco</groupId>
|
173 | 168 | <artifactId>jacoco-maven-plugin</artifactId>
|
174 |
| - <version>${jacoco.version}</version> |
| 169 | + <version>0.8.5</version> |
175 | 170 | <executions>
|
176 | 171 | <execution>
|
177 | 172 | <goals>
|
|
197 | 192 | </plugin>
|
198 | 193 | <plugin>
|
199 | 194 | <artifactId>maven-surefire-plugin</artifactId>
|
200 |
| - <version>${surefire.version}</version> |
| 195 | + <version>3.1.0</version> |
201 | 196 | <configuration>
|
202 | 197 | <systemPropertyVariables>
|
203 | 198 | <redis-hosts>${redis-hosts}</redis-hosts>
|
|
340 | 335 | <id>release</id>
|
341 | 336 | <build>
|
342 | 337 | <plugins>
|
343 |
| - <!--Sign |
344 |
| - the components - this is required by maven central for releases --> |
| 338 | + <!--Sign the components - this is required by maven central for releases --> |
345 | 339 | <plugin>
|
346 | 340 | <artifactId>maven-gpg-plugin</artifactId>
|
347 | 341 | <version>3.1.0</version>
|
|
370 | 364 | <plugins>
|
371 | 365 | <plugin>
|
372 | 366 | <artifactId>maven-surefire-plugin</artifactId>
|
373 |
| - <version>${surefire.version}</version> |
| 367 | + <version>3.1.0</version> |
374 | 368 | <configuration>
|
375 | 369 | <test>**/examples/*Example.java</test>
|
376 | 370 | </configuration>
|
|
390 | 384 | <plugin>
|
391 | 385 | <groupId>org.jacoco</groupId>
|
392 | 386 | <artifactId>jacoco-maven-plugin</artifactId>
|
393 |
| - <version>${jacoco.version}</version> |
| 387 | + <version>0.8.5</version> |
394 | 388 | <configuration>
|
395 | 389 | <skip>true</skip> <!-- Disabling plugin when using this profile -->
|
396 | 390 | </configuration>
|
|
404 | 398 | <dependency>
|
405 | 399 | <groupId>junit</groupId>
|
406 | 400 | <artifactId>junit</artifactId>
|
407 |
| - <version>${junit.version}</version> |
| 401 | + <version>4.13.2</version> |
408 | 402 | </dependency>
|
409 | 403 | </dependencies>
|
410 | 404 | </plugin>
|
411 | 405 |
|
412 | 406 | <plugin>
|
413 | 407 | <groupId>org.apache.maven.plugins</groupId>
|
414 | 408 | <artifactId>maven-surefire-plugin</artifactId>
|
415 |
| - <version>${surefire.version}</version> |
| 409 | + <version>3.1.0</version> |
416 | 410 | <dependencies>
|
417 | 411 | <dependency>
|
418 | 412 | <groupId>org.apache.maven.surefire</groupId>
|
419 | 413 | <artifactId>surefire-junit47</artifactId>
|
420 |
| - <version>${surefire.version}</version> |
| 414 | + <version>3.1.0</version> |
421 | 415 | </dependency>
|
422 | 416 | </dependencies>
|
423 | 417 | <configuration>
|
|
0 commit comments