|
52 | 52 | <jacoco-maven-plugin.version>0.8.13</jacoco-maven-plugin.version> |
53 | 53 | <maven-assembly-plugin.version>2.6</maven-assembly-plugin.version> |
54 | 54 | <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> |
55 | | - <maven-failsafe-plugin.version>2.19.1</maven-failsafe-plugin.version> |
| 55 | + <maven-failsafe-plugin.version>2.19.2</maven-failsafe-plugin.version> |
56 | 56 | <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> |
57 | | - <maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version> |
| 57 | + <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> |
58 | 58 | <maven-source-plugin.version>2.3</maven-source-plugin.version> |
59 | 59 | <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> |
60 | 60 | <maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version> |
|
65 | 65 | <!-- Declare versions for dependencies --> |
66 | 66 | <apache.httpclient.version>4.5.14</apache.httpclient.version> |
67 | 67 | <commons-configuration2.version>2.12.0</commons-configuration2.version> |
68 | | - <jackson.version>2.19.1</jackson.version> |
| 68 | + <jackson.version>2.19.2</jackson.version> |
69 | 69 | <junit.version>4.13.2</junit.version> |
70 | 70 | <mockito.version>1.10.19</mockito.version> |
71 | | - <org.asynchttpclient.version>2.12.4</org.asynchttpclient.version> |
| 71 | + <org.asynchttpclient.version>3.0.2</org.asynchttpclient.version> |
72 | 72 | <browsermob.version>2.1.5</browsermob.version> |
73 | 73 | <io.netty.version>4.2.3.Final</io.netty.version> |
74 | | - <org.slf4j.version>1.7.30</org.slf4j.version> |
| 74 | + <org.slf4j.version>2.0.17</org.slf4j.version> |
75 | 75 | <com.google.guava.version>33.4.8-android</com.google.guava.version> |
76 | 76 | <commons.logging.version>1.3.5</commons.logging.version> |
77 | | - <com.fasterxml.jackson.core.version>2.19.1</com.fasterxml.jackson.core.version> |
| 77 | + <com.fasterxml.jackson.core.version>2.19.2</com.fasterxml.jackson.core.version> |
78 | 78 | <org.apache.commons.version>3.18.0</org.apache.commons.version> |
79 | 79 |
|
80 | 80 | <!-- configure surefire and maven to be individually skippable --> |
|
88 | 88 | <!-- custom properties to support jacoco configuration --> |
89 | 89 | <jacoco.it.execution.data.file>${project.build.directory}/coverage-reports/jacoco-it.exec</jacoco.it.execution.data.file> |
90 | 90 | <jacoco.ut.execution.data.file>${project.build.directory}/coverage-reports/jacoco-ut.exec</jacoco.ut.execution.data.file> |
91 | | - <argLine></argLine> |
| 91 | + <argLine/> |
92 | 92 |
|
93 | 93 | </properties> |
94 | 94 |
|
|
291 | 291 | <plugin> |
292 | 292 | <groupId>org.apache.maven.plugins</groupId> |
293 | 293 | <artifactId>maven-enforcer-plugin</artifactId> |
294 | | - <version>3.4.1</version> |
295 | | - <configuration> |
296 | | - <rules> |
297 | | - <dependencyConvergence /> |
298 | | - </rules> |
299 | | - <fail>true</fail> |
300 | | - </configuration> |
| 294 | + <version>3.6.1</version> |
301 | 295 | <executions> |
302 | 296 | <execution> |
303 | | - <id>enforce-rules</id> |
304 | | - <goals> |
305 | | - <goal>enforce</goal> |
306 | | - </goals> |
307 | | - <phase>validate</phase> |
| 297 | + <id>enforce</id> |
308 | 298 | <configuration> |
309 | 299 | <rules> |
310 | | - <dependencyConvergence /> |
| 300 | + <dependencyConvergence/> |
311 | 301 | </rules> |
312 | | - <fail>true</fail> |
313 | 302 | </configuration> |
| 303 | + <goals> |
| 304 | + <goal>enforce</goal> |
| 305 | + </goals> |
314 | 306 | </execution> |
315 | 307 | </executions> |
316 | 308 | </plugin> |
|
0 commit comments