|
49 | 49 | <plugin> |
50 | 50 | <groupId>org.apache.maven.plugins</groupId> |
51 | 51 | <artifactId>maven-compiler-plugin</artifactId> |
52 | | - <version>3.8.0</version> |
| 52 | + <version>3.14.1</version> |
53 | 53 | <configuration> |
54 | 54 | <source>1.8</source> |
55 | 55 | <target>1.8</target> |
|
58 | 58 | <plugin> |
59 | 59 | <groupId>org.apache.maven.plugins</groupId> |
60 | 60 | <artifactId>maven-dependency-plugin</artifactId> |
61 | | - <version>2.8</version> |
| 61 | + <version>3.9.0</version> |
62 | 62 | </plugin> |
63 | 63 | <plugin> |
64 | 64 | <groupId>org.apache.maven.plugins</groupId> |
65 | 65 | <artifactId>maven-source-plugin</artifactId> |
66 | | - <version>3.2.1</version> |
| 66 | + <version>3.3.1</version> |
67 | 67 | </plugin> |
68 | 68 | <plugin> |
69 | 69 | <groupId>org.apache.maven.plugins</groupId> |
70 | 70 | <artifactId>maven-surefire-plugin</artifactId> |
71 | | - <version>2.15</version> |
| 71 | + <version>3.5.4</version> |
72 | 72 | <configuration> |
73 | 73 | <argLine>-XX:+AllowEnhancedClassRedefinition</argLine> |
74 | 74 | </configuration> |
75 | 75 | </plugin> |
76 | 76 | <plugin> |
77 | 77 | <artifactId>maven-failsafe-plugin</artifactId> |
78 | | - <version>2.17</version> |
| 78 | + <version>3.5.4</version> |
79 | 79 | <executions> |
80 | 80 | <execution> |
81 | 81 | <goals> |
|
160 | 160 | <useManifestOnlyJar>false</useManifestOnlyJar> |
161 | 161 | <argLine>-javaagent:${org.hotswapagent:hotswap-agent-core:jar} -Xbootclasspath/a:"${org.hotswapagent:hotswap-agent-core:jar}:${project.build.OutputDirectory}"</argLine> |
162 | 162 | --> |
163 | | - <argLine>${dcevm.test.arguments} -javaagent:${org.hotswapagent:hotswap-agent-core:jar}</argLine> |
| 163 | + <argLine>${dcevm.test.arguments} -javaagent:${project.basedir}/../../hotswap-agent-core/target/hotswap-agent-core-${project.version}.jar</argLine> |
164 | 164 | <jvm>${java.home}/bin/java</jvm> |
165 | 165 | </configuration> |
166 | 166 | </plugin> |
167 | 167 |
|
168 | 168 | <plugin> |
169 | 169 | <groupId>org.codehaus.mojo</groupId> |
170 | 170 | <artifactId>flatten-maven-plugin</artifactId> |
171 | | - <version>1.2.2</version> |
| 171 | + <version>1.7.3</version> |
172 | 172 | <configuration> |
173 | 173 | <flattenMode>minimum</flattenMode> |
174 | 174 | </configuration> |
|
276 | 276 | <profile> |
277 | 277 | <id>default-tools</id> |
278 | 278 | <activation> |
279 | | - <jdk>11</jdk> |
| 279 | + <jdk>(,11)</jdk> |
280 | 280 | </activation> |
281 | 281 |
|
282 | 282 | <dependencyManagement> |
|
301 | 301 | <dependency> |
302 | 302 | <groupId>junit</groupId> |
303 | 303 | <artifactId>junit</artifactId> |
304 | | - <version>4.13</version> |
| 304 | + <version>4.13.2</version> |
305 | 305 | <scope>test</scope> |
306 | 306 | </dependency> |
307 | 307 | <dependency> |
308 | 308 | <groupId>org.jmock</groupId> |
309 | 309 | <artifactId>jmock-junit4</artifactId> |
310 | | - <version>2.6.0</version> |
| 310 | + <version>2.13.1</version> |
311 | 311 | <scope>test</scope> |
312 | 312 | </dependency> |
313 | 313 | <dependency> |
314 | 314 | <groupId>org.jmock</groupId> |
315 | 315 | <artifactId>jmock-legacy</artifactId> |
316 | | - <version>2.6.0</version> |
| 316 | + <version>2.13.1</version> |
| 317 | + <scope>test</scope> |
| 318 | + </dependency> |
| 319 | + <dependency> |
| 320 | + <groupId>org.ow2.asm</groupId> |
| 321 | + <artifactId>asm</artifactId> |
| 322 | + <version>9.9</version> |
317 | 323 | <scope>test</scope> |
318 | 324 | </dependency> |
319 | | - |
320 | 325 | </dependencies> |
321 | 326 | </dependencyManagement> |
322 | 327 |
|
323 | 328 | <properties> |
324 | 329 | <revision>2.0.2</revision> |
325 | 330 | <dcevm>dcevm</dcevm> |
326 | 331 | <dcevm.test.arguments>-XX:+AllowEnhancedClassRedefinition -XX:HotswapAgent=external |
| 332 | + --add-exports java.base/sun.security.action=ALL-UNNAMED |
| 333 | + --add-exports java.base/sun.security.util=ALL-UNNAMED |
| 334 | + --add-opens java.base/java.lang.reflect=ALL-UNNAMED |
327 | 335 | --add-opens=java.base/sun.nio.ch=ALL-UNNAMED</dcevm.test.arguments> |
328 | 336 | <project.build.outputEncoding>UTF-8</project.build.outputEncoding> |
329 | 337 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
0 commit comments