Skip to content

Commit

Permalink
Fixed #424 - Check for WARNING about Java agent
Browse files Browse the repository at this point in the history
  • Loading branch information
khmarbaise committed Dec 26, 2023
1 parent 2adfc93 commit e608e2a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion itf-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<configuration combine.self="append">
<forkCount>5</forkCount>
<reuseForks>true</reuseForks>
<systemPropertyVariables>
Expand Down
21 changes: 21 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,27 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
@{argLine}
-XX:+EnableDynamicAgentLoading
</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<argLine>
@{argLine}
-XX:+EnableDynamicAgentLoading
</argLine>
</configuration>
</plugin>

</plugins>
</build>

Expand Down

0 comments on commit e608e2a

Please sign in to comment.