7
Error: Could not find or load main class org.apache.maven.surefire.booter.ForkedBooter Jenkins.

The following error I got from building a maven project from jenkins.

Malinda Peiris
  • 583
  • 2
  • 8
  • 22

1 Answers1

14

I added this to my pom xml plugins. Which Resolved all my problems.

<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.22.1</version>
            <configuration>
                <useSystemClassLoader>false</useSystemClassLoader>
            </configuration>
        </plugin>
Stephane
  • 11,836
  • 25
  • 112
  • 175
Malinda Peiris
  • 583
  • 2
  • 8
  • 22