Maven可执行文件Jar在启动时抛出错误

这个问题在这里已经有了答案:

  • 我怎样才能创建一个可执行的JAR与依赖使用Maven? 33个答案

  • 如果我是正确的,maven-jar-plugin会创建一个包含所有已编译的.class文件但没有依赖关系的jar文件。

    我建议使用maven-assembly-plugin并将其绑定到包执行阶段,这样它将在运行mvn install时构建

    <plugin>
      <artifactId>maven-assembly-plugin</artifactId>
      <configuration>
        <archive>
          <manifest>
            <mainClass>com.pwc.scfa.pensareautomatio3.Main</mainClass>
          </manifest>
        </archive>
        <descriptorRefs>
          <descriptorRef>jar-with-dependencies</descriptorRef>
        </descriptorRefs>
      </configuration>
      <executions>
        <execution>
          <id>make-assembly</id> <!-- this is used for inheritance merges -->
          <phase>package</phase> <!-- bind to the packaging phase -->
          <goals>
            <goal>single</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
    

    请参阅此答案以获取更多信息。

    链接地址: http://www.djcxy.com/p/29629.html

    上一篇: Maven executable Jar throws error on start

    下一篇: Packaging of a Standalone Java program built using Maven