简体   繁体   English

Maven 构建失败类NotFoundException

[英]Maven build failure classNotFoundException

It's my first time trying out maven and I can't understand why I keep getting classnotfoundexception every time I am trying to build.这是我第一次尝试 maven,我不明白为什么每次尝试构建时我都会遇到 classnotfoundexception。 This is the error I am receiving:这是我收到的错误:

[INFO] Scanning for projects...
[INFO] 
[INFO] ---------------------------< owmapi:owmapi >----------------------------
[INFO] Building OwmAPICase 0.0.1-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- exec-maven-plugin:3.0.0:java (default-cli) @ owmapi ---
[WARNING] 
java.lang.ClassNotFoundException: owmapi.Main
    at java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:435)
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:589)
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
    at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:246)
    at java.base/java.lang.Thread.run(Thread.java:832)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  0.582 s
[INFO] Finished at: 2021-02-28T14:09:17+01:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.0.0:java (default-cli) on project owmapi: An exception occured while executing the Java class. owmapi.Main -> [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

And this is my pom.xml:这是我的 pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>owmapi</groupId>  <!-- case.se.ctk -->
    <artifactId>owmapi</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>OwmAPICase</name>

     <properties>
        <maven.compiler.source>1.7</maven.compiler.source>
        <maven.compiler.target>1.7</maven.compiler.target>
    </properties> 

    <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>3.0.0</version>
        <configuration>
          <mainClass>owmapi.Main</mainClass>
        </configuration>
      </plugin>
    </plugins>
  </build>
  
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <!-- https://mvnrepository.com/artifact/net.aksingh/owm-japis -->
        <dependency>
            <groupId>net.aksingh</groupId>
            <artifactId>owm-japis</artifactId>
            <version>2.5.3.0</version>
        </dependency>
    </dependencies>
</project>

Everything works fine if i simply run the project as a java application in eclipse but for some reason it won't work with maven.如果我只是在 eclipse 中将项目作为 java 应用程序运行,那么一切正常,但由于某种原因,它不适用于 maven。 I guess the problem lies in mainClass in my pom but I've tried several solutions to no avail.我想问题出在我的 pom 中的 mainClass 上,但我尝试了几种解决方案都无济于事。

I think your main class have some dependencies on the jar mentioned in the pom.xml .我认为您的主要 class 对 pom.xml 中提到的pom.xml有一些依赖关系。 You're simply creating a target jar which doesn't have those dependencies included.您只是在创建一个不包含这些依赖项的目标 jar。 You need to create the uber/fat jar which include all the relevant dependencies.您需要创建包含所有相关依赖项的 uber/fat jar。 You can use this following plugin maven-assembly-plugin for creating the target jar.您可以使用以下插件maven-assembly-plugin来创建目标 jar。

Assumption: Main.java class is under package owmapi .假设: Main.java class 在package owmapi下。

<build>
    <finalName>owmapi</finalName>
    <plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                        <mainClass>owmapi.Main</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
            </configuration>
        </plugin>
    </plugins>
</build>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM