用Maven构建可执行jar?


122

我正在尝试使用maven为名为“ logmanager”的小型家庭项目生成可执行jar,如下所示:

如何使用Maven创建具有依赖项的可执行JAR?

我将此处显示的代码段添加到pom.xml中,并运行了mvn assembly:assembly。它在logmanager / target中生成两个jar文件:logmanager-0.1.0.jar和logmanager-0.1.0-jar-with-dependencies.jar。双击第一个罐子时出现错误:

Could not find the main class: com.gorkwobble.logmanager.LogManager. Program will exit.

当我双击jar-with-dependencies.jar时,出现一个略有不同的错误:

Failed to load Main-Class manifest attribute from: C:\EclipseProjects\logmanager\target\logmanager-0.1.0-jar-with-dependencies.jar

我复制并粘贴了路径和类名,并检查了POM中的拼写。我的主类从Eclipse启动配置启动正常。有人可以帮我弄清楚为什么我的jar文件无法运行吗?另外,为什么要从两个罐子开始呢?如果您需要更多信息,请与我们联系。

这是完整的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 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.gorkwobble</groupId>
  <artifactId>logmanager</artifactId>
  <name>LogManager</name>
  <version>0.1.0</version>
  <description>Systematically renames specified log files on a scheduled basis. Designed to help manage MUSHClient logging and prevent long, continuous log files.</description>
  <build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>2.2</version>
            <!-- nothing here -->
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.2-beta-4</version>
            <configuration>
              <descriptorRefs>
                <descriptorRef>jar-with-dependencies</descriptorRef>
              </descriptorRefs>
              <archive>
                <manifest>
                  <mainClass>com.gorkwobble.logmanager.LogManager</mainClass>
                </manifest>
              </archive>
            </configuration>
            <executions>
              <execution>
                <phase>package</phase>
                <goals>
                  <goal>single</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <source>1.6</source>
              <target>1.6</target>
            </configuration>
          </plugin>
    </plugins>
  </build>
  <dependencies>
    <!-- commons-lang -->
    <dependency>
        <groupId>commons-lang</groupId>
        <artifactId>commons-lang</artifactId>
        <version>2.4</version>
    </dependency> 

    <!-- Quartz scheduler -->
    <dependency>
        <groupId>opensymphony</groupId>
        <artifactId>quartz</artifactId>
        <version>1.6.3</version>
    </dependency>
    <!-- Quartz 1.6.0 depends on commons collections -->
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId>
      <version>3.1</version>
    </dependency>
    <!-- Quartz 1.6.0 depends on commons logging -->
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.1</version>
    </dependency>
    <!-- Quartz 1.6.0 requires JTA in non J2EE environments -->
    <dependency>
      <groupId>javax.transaction</groupId>
      <artifactId>jta</artifactId>
      <version>1.1</version>
      <scope>runtime</scope>
    </dependency>

    <!-- junitx test assertions -->
    <dependency>
        <groupId>junit-addons</groupId>
        <artifactId>junit-addons</artifactId>
        <version>1.4</version>
        <scope>test</scope>
    </dependency>

    <!-- junit dependency; FIXME: make this a separate POM -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.1</version>
    </dependency>

  </dependencies>
  <dependencyManagement>
  </dependencyManagement>
</project>

Answers:


244

实际上,我认为您提到的问题给出的答案是错误的UPDATE-20101106:有人对其进行了修复,答案指的是编辑之前的版本),这至少部分地说明了您为什么会遇到麻烦的原因。


它在logmanager / target中生成两个jar文件:logmanager-0.1.0.jar和logmanager-0.1.0-jar-with-dependencies.jar。

第一个是在此package阶段通过生成的logmanager模块的JAR jar:jar(因为该模块的包装类型为jar)。第二个是由生成的程序集,assembly:assembly并且应包含当前模块中的类及其依赖项(如果使用了描述符jar-with-dependencies)。

双击第一个罐子时出现错误:

Could not find the main class: com.gorkwobble.logmanager.LogManager. Program will exit.

如果您应用了作为参考发布的链接的建议配置,则将jar插件配置为生成可执行工件,如下所示:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <configuration>
      <archive>
        <manifest>
          <addClasspath>true</addClasspath>
          <mainClass>com.gorkwobble.logmanager.LogManager</mainClass>
        </manifest>
      </archive>
    </configuration>
  </plugin>

因此logmanager-0.1.0.jar确实是可执行文件,但是1.这不是您想要的(因为它不具有所有依赖项),并且2.它不包含com.gorkwobble.logmanager.LogManager(这就是错误所要表达的内容,请检查jar的内容)。

当我双击jar-with-dependencies.jar时,出现一个略有不同的错误:

Failed to load Main-Class manifest attribute from: C:\EclipseProjects\logmanager\target\logmanager-0.1.0-jar-with-dependencies.jar

同样,如果您按照建议配置了程序集插件,则将具有以下内容:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-assembly-plugin</artifactId>
    <configuration>
      <descriptorRefs>
        <descriptorRef>jar-with-dependencies</descriptorRef>
      </descriptorRefs>
    </configuration>
  </plugin>

有了这个设置,logmanager-0.1.0-jar-with-dependencies.jar包含的类从当前模块它的依赖,但根据错误,它META-INF/MANIFEST.MF 并不包含一个Main-Class条目(其可能不一样MANIFEST.MF在日志管理-0.1.0.jar)。该jar实际上不是可执行文件,这又不是您想要的。


因此,我的建议是configuration从maven-jar-plugin中删除该元素,并像这样配置maven-assembly-plugin:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <version>2.2</version>
    <!-- nothing here -->
  </plugin>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>2.2-beta-4</version>
    <configuration>
      <descriptorRefs>
        <descriptorRef>jar-with-dependencies</descriptorRef>
      </descriptorRefs>
      <archive>
        <manifest>
          <mainClass>org.sample.App</mainClass>
        </manifest>
      </archive>
    </configuration>
    <executions>
      <execution>
        <phase>package</phase>
        <goals>
          <goal>single</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

当然,请替换org.sample.App为要执行的类。红利,我已经绑定assembly:singlepackage阶段了,因此您不必再运行assembly:assembly了。只需运行mvn install,即可在标准构建过程中进行组装。

因此,请使用上面给出的配置更新pom.xml并运行mvn clean install。然后,cd进入target目录,然后重试:

java -jar logmanager-0.1.0-jar-with-dependencies.jar

如果遇到错误,请使用它更新您的问题,并发布META-INF/MANIFEST.MF文件的内容以及您的相关部分pom.xml(插件配置部分)。另外,请发布以下结果:

java -cp logmanager-0.1.0-jar-with-dependencies.jar com.gorkwobble.logmanager.LogManager

以证明它在命令行上工作正常(无论eclipse怎么说)。

编辑:对于Java 6,您需要配置maven-compiler-plugin。将此添加到您的pom.xml中:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
      <source>1.6</source>
      <target>1.6</target>
    </configuration>
  </plugin>

4
感谢您的意见!我按照您的指定更改了pom.xml。当我运行mvn clean install时,我的代码中出现了很多编译错误,说-source 1.3不支持注释等。我正在使用jdk1.6,它在eclipse中编译;我不确定1.3是如何引入的。pom片段中的某个库版本可能是较旧的版本?
RMorrisey

谢谢!我克服了1.3版的问题。我还必须将junit4依赖项添加到我的POM中。我正在对其他问题进行故障排除;如果我卡住了,我会再次发布!如果我运行jar,则将其标记为答案。我当前的POM在上述问题中已更新。
RMorrisey

有什么方法可以从生成的jar文件中排除资源?

2
是否有可能使结果的jar具有“正常”名称?
Daniil Shevelev 2014年

1
我还发现此Sonatype博客文章很有用

15

Pascal Thivent的回答帮助了我。 但是,如果您在<pluginManagement>元素中管理插件,则必须在插件管理之外再次定义程序集,否则,如果运行,则相关性不会打包在jar中mvn install

<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>jar</packaging>


    <build>
        <pluginManagement>
            <plugins>

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.1</version>
                    <configuration>
                        <source>1.6</source>
                        <target>1.6</target>
                    </configuration>
                </plugin>

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-assembly-plugin</artifactId>
                    <version>2.4</version>
                    <configuration>
                        <archive>
                            <manifest>
                                <mainClass>main.App</mainClass>
                            </manifest>
                        </archive>
                        <descriptorRefs>
                            <descriptorRef>jar-with-dependencies</descriptorRef>
                        </descriptorRefs>
                    </configuration>
                    <executions>
                        <execution>
                            <id>make-assembly</id>
                            <phase>package</phase>
                            <goals>
                                <goal>single</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>

            </plugins>

        </pluginManagement>

        <plugins> <!-- did NOT work without this  -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
            </plugin>
        </plugins>

    </build>


    <dependencies>
       <!--  dependencies commented out to shorten example -->
    </dependencies>

</project>

1
谢谢迈克,它帮助了我。最初,我的软件包是在不使用<pluginManagement>的情况下生成的。但是Eclipse在pom.xml中出现了“ Maven-生命周期未涵盖的插件执行”错误。这让我分心。因此,为解决此问题,我添加了<pluginManagement>,现在,eclipse错误消失了,但我的软件包停止了构建。您上面的pom片段对我有用。:)
shashaDenovo

2
这很有用..当使用<pluginManagement>时,最上面的答案将不起作用。
ininprsr 2015年

5

如果不想在程序包上执行组装目标,则可以使用下一个命令:

mvn package assembly:single

这里的是关键字。


-1

右键单击该项目,然后进行maven构建,maven清理,maven生成资源和maven安装。jar文件将自动生成。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.