未能执行目标 org.codehaus.mojo:exec-maven-plugin:1.6.0:java
Posted
技术标签:
【中文标题】未能执行目标 org.codehaus.mojo:exec-maven-plugin:1.6.0:java【英文标题】:Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:java 【发布时间】:2018-01-29 05:43:42 【问题描述】:我正在尝试使用 pom.xml 文件执行 testNG 主类,方法是使用 Maven 运行配置中的以下命令。
exec:java -Dexec.mainClass=com.selenium.controls.TestNGMainClass
在这里,我使用的是 Java 8。
但我收到以下错误。
[INFO] ------------------------------------------------------------------------
[INFO] Building seleniumScriptsRegression 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- exec-maven-plugin:1.6.0:java (default-cli) @ seleniumScriptsRegression ---
[WARNING] java.lang.ClassNotFoundException: com.selenium.controls.TestNGMainClass
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:270)
at java.lang.Thread.run(Unknown Source)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5.331 s
[INFO] Finished at: 2018-01-29T10:59:54+05:30
[INFO] Final Memory: 13M/32M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:java (default-cli) on project seleniumScriptsRegression: An exception occured while executing the Java class. com.selenium.controls.TestNGMainClass -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
请帮我解决问题。
【问题讨论】:
能否提供您的 pom.xml 文件用于 exec-maven-plugin,可能是执行列不同。 【参考方案1】:假设你在 src/test/java 中有一个 Main.java
在你的 pom.xml 中添加这个
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<classpathScope>test</classpathScope>
<mainClass>Main</mainClass>
</configuration>
<executions>
<execution>
<id>run-selenium</id>
<phase>integration-test</phase>
<goals><goal>java</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
并通过以下方式运行它:
mvn clean install
或 mvn exec:java
【讨论】:
嗨,当我用谷歌搜索时,maven 正在查看 src/main/java。但是我的 java 类在 src/test/java 中。可能这是个问题。 是的,很有可能。默认情况下不包含测试类路径,请阅读:mojohaus.org/exec-maven-plugin/examples/… 我也面临同样的问题。 但作为一种解决方法,我尝试将我的包从测试目录移动到主目录,它工作正常.. 你可以尝试在没有你的 ide (eclipse) 的情况下执行这个吗?你能分享你在 maven 目标文件夹中找到主类的位置吗?以上是关于未能执行目标 org.codehaus.mojo:exec-maven-plugin:1.6.0:java的主要内容,如果未能解决你的问题,请参考以下文章
Maven 不会运行我的项目:无法执行目标 org.codehaus.mojo:exec-maven-plugin:1.2.1:exec
无法在项目 mavenproject2 上执行目标 org.codehaus.mojo:exec-maven-plugin:1.3.2:exec (默认):
Maven错误:无法执行目标org.codehaus.mojo:exec-maven-plugin:1.2.1:exec
目标 org.codehaus.mojo:exec-maven-plugin:1.6.0:java 的参数“mainClass”丢失或无效
Maven 和 Java:目标 org.codehaus.mojo:exec-maven-plugin:1.2.1:java 的参数“mainClass”丢失或无效
在 Maven 中从测试范围运行 main:“目标 org.codehaus.mojo:exec-maven-plugin:1.6.0:java 的参数 'mainClass' 丢失或无效”