You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version> <!-- or some other version -->
<configuration>
<argLine>
-javaagent:"${settings.localRepository}"/org/jmockit/jmockit/${jmockit.version}/jmockit-${jmockit.version}.jar
</argLine>
</configuration>
</plugin>
</plugins>
The reference to ${settings.localrepository} is not expanded and the minion fails to find the JMockit jar
One solution might be to inject the Settings parameter into the Mojo and search for references for each of the properties. Not as elegant as iterating through properties but perhaps we only need the localRepository property anyway
The text was updated successfully, but these errors were encountered:
pitest/pitest-maven/src/main/java/org/pitest/maven/MojoToReportOptionsConverter.java
Line 490 in dd84e8b
When setting up JMockit as referenced here https://jmockit.github.io/tutorial/Introduction.html#maven
The reference to
${settings.localrepository}
is not expanded and the minion fails to find the JMockit jarOne solution might be to inject the
Settings
parameter into the Mojo and search for references for each of the properties. Not as elegant as iterating through properties but perhaps we only need thelocalRepository
property anywayThe text was updated successfully, but these errors were encountered: