Error: Could not find or load main class org.Apache.maven.surefire.booter.ForkedBooter Jenkins.
JenkinsからMavenプロジェクトをビルドしたときに発生した次のエラー。
これをpom xmlプラグインに追加しました。私のすべての問題を解決しました。
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>