【发布时间】:2019-04-09 13:30:23
【问题描述】:
Error: Could not find or load main class org.apache.maven.surefire.booter.ForkedBooter Jenkins.
我从 jenkins 构建 maven 项目时遇到以下错误。
【问题讨论】:
标签: java amazon-web-services maven jenkins pom.xml
Error: Could not find or load main class org.apache.maven.surefire.booter.ForkedBooter Jenkins.
我从 jenkins 构建 maven 项目时遇到以下错误。
【问题讨论】:
标签: java amazon-web-services maven jenkins pom.xml
我将此添加到我的 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>
【讨论】: