We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d787e4d commit 1c6c819Copy full SHA for 1c6c819
pom.xml
@@ -399,7 +399,7 @@
399
<excludes>
400
<exclude>**/*TestSuite.java</exclude>
401
</excludes>
402
- <argLine>-XX:+EnableDynamicAgentLoading</argLine>
+ <argLine>${test-arguments}</argLine>
403
<systemPropertyVariables>
404
<net.bytebuddy.experimental>true</net.bytebuddy.experimental>
405
<rabbitmqctl.bin>DOCKER:rabbitmq</rabbitmqctl.bin>
@@ -868,6 +868,15 @@
868
<mockito.version>4.11.0</mockito.version>
869
</properties>
870
</profile>
871
+ <profile>
872
+ <id>jvm-test-arguments-java-21-and-more</id>
873
+ <activation>
874
+ <jdk>[21,)</jdk>
875
+ </activation>
876
+ <properties>
877
+ <test-arguments>-XX:+EnableDynamicAgentLoading</test-arguments>
878
+ </properties>
879
+ </profile>
880
881
<profile>
882
<id>extensions</id>
0 commit comments