无法使用maven运行java main方法

时间:2016-09-21 17:31:32

标签: java maven pom.xml

在运行java代码时获取错误类未找到异常 包名称为com.personal.cucumber.Maven_Try 类名是Try_Class

下面附带POM并注意JDK在Java编译器中设置

http://maven.apache.org/xsd/maven-4.0.0.xsd">     4.0.0

<groupId>com.personal.cucumber</groupId>
<artifactId>Maven_Try</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Maven_Try</name>
<url>http://maven.apache.org</url>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.11</version>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.53.1</version>
    </dependency>
</dependencies>

<build>
    <plugins>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
                <archive>
                    <manifest>
                        <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                        <addClasspath>true</addClasspath>
                        <mainClass>com.personal.cucumber.Maven_Try.Try_Class</mainClass>
                    </manifest>
                    <manifestEntries>
                        <Class-Path>../conf/</Class-Path>
                    </manifestEntries>
                </archive>
            </configuration>
        </plugin>
    </plugins>
</build>

1 个答案:

答案 0 :(得分:0)

如果你碰到了 错误:无法使用maven运行java main方法 这样做对我有用: 错误原因:此错误的原因是jar文件或运行maven项目的依赖项未正确安装。

错误解决方案:转到项目文件夹(例如:D:\ office \ OIA-service-app) 在计算机类型命令&#34; cmd&#34;的地址栏中然后按Enter键。 在命令提示符下键入命令&#34; mvn clean install&#34; [image] [1]确保您具有Internet连接。