web-dev-qa-db-ja.com

目標org.codehaus.mojo:exec-maven-plugin:1.6.0:javaの実行に失敗しました

Maven Run Configurationsで以下のコマンドを使用して、pom.xmlファイルを使用してtestNGメインクラスを実行しようとしています。

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

問題を解決するために私を助けてください。

3
Mohan Kumar

あなたがMain.Javaをsrc/test/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

1
user6761124

あなたはあなたのIDEなしでこれを実行してみることができますか(Eclipse)? Mavenターゲットフォルダーでメインクラスを見つけた場所を共有できますか?

2
user6761124