Skip to content

Commit

Permalink
Create workaround for error with maven-surefire-plugin (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
torkelbe authored Jan 17, 2019
1 parent a3190b7 commit d5f8975
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,18 @@
</descriptorRefs>
</configuration>
</plugin>

<!--
Set useSystemClassLoader to false as workaround for the issue discussed here
https://stackoverflow.com/questions/53010200/maven-surefire-could-not-find-forkedbooter-class
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit d5f8975

Please sign in to comment.