Maven:构建可运行的jar,然后使用maven-assembly-plugin添加到zip

时间:2013-02-14 17:21:05

标签: java maven maven-assembly-plugin

我有一个应该很容易解决的maven问题,但事实证明有点困难。

我有一个构建jar的项目,并且需要该jar能够执行类com.foo.bar.MainClass,但是我需要能够将它与一些脚本及其依赖项一起部署,如

some-product-1.0.0.zip
  bin/
    some-product.sh
  lib/
    some-product-1.0.0.jar
    dependency1.jar
    dependency2.jar

我可以很容易地完成这个结构。我的pom.xml看起来像

<plugin>
    <artifactId>maven-assembly-plugin</artifactId>
    <configuration>
        <archive>
            <manifest>
                <mainClass>com.foo.bar.MainClass</mainClass>
                <addClasspath>true</addClasspath>
            </manifest>
        </archive>
        <descriptors>
            <descriptor>assembly.xml</descriptor>
        </descriptors>
    </configuration>
</plugin>

我的assembly.xml

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
    <id>bin</id>
    <formats>
        <format>zip</format>
    </formats>
    <files>
        <file>
            <source>src/main/scripts/some-product.sh</source>
            <outputDirectory>/bin</outputDirectory>
        </file>
    </files>
    <dependencySets>
        <dependencySet>
            <outputDirectory>/lib</outputDirectory>
            <useProjectArtifact>true</useProjectArtifact>
            <scope>compile</scope>
        </dependencySet>
    </dependencySets>
</assembly>

some-product.sh看起来像

SCRIPTLOC=$( readlink -f $( dirname "${BASH_SOURCE[0]}" ) )
LIBS="$( dirname $SCRIPTLOC )/lib"
# builds a : joined list of all the jars in the lib directory
MYCLASSES=$(echo $LIBS/*.jar | tr ' ' ':')

java -cp "$CLASSPATH:$MYCLASSES" com.foo.bar.MainClass

但是我运行脚本时得到的是

Exception in thread "main" java.lang.NoClassDefFoundError: com/foo/bar/MainClass
Cause by: java.lang.ClassNotFoundException com.foo.bar.MainClass
    at ...
Could not find the main class: com.foo.bar.MainClass.  Program will exit.

当我检查包含该类的jar时,清单只有

Manifest-Version: 1.0
Archiver-Version: Plexus Archiver
Created-By: Apache Maven
Built-By: <myname>
Build-Jdk: 1.6.0_27

告诉我它没有将主类添加到清单中。

我已经搜索了这个问题很长一段时间没有运气,汇编插件网站上的例子非常糟糕。我怎样才能让maven正确构建这个jar 将它添加到zip?

编辑:我确实需要在我的pom中使用maven-jar-plugin,但我真正的问题是我使用的是Cygwin,它预期的类路径分隔符是;而不是{{ 1}}。我的解决方案是编写一些代码来确定要使用哪个类路径分隔符,并且使用jar插件它现在可以很好地工作。

1 个答案:

答案 0 :(得分:3)

我看到的两件事是

  1. classpath未正确设置。

     SCRIPTLOC=$( readlink -f $( dirname "${BASH_SOURCE[0]}" ) )
    

    这里的SCRIPTLOC不是根目录。它是<the_complete_path_from_root>/bin

     LIBS="$( dirname $SCRIPTLOC )/lib"
    

    最终评估为<the_complete_path_from_root>/bin/lib

    您稍后将lib文件夹添加到其中,该文件夹实际上并不包含您的jar。因此,要添加到类路径的正确路径是存在jar的lib文件夹,然后它就能找到com.foo.bar.MainClass

  2. 要将Main类添加到清单文件,您需要将以下内容添加到pom.xml文件中。

    <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
         <configuration>
           <archive>
             <manifest>
               <mainClass>com.someclass.Main</mainClass>
               <packageName>com.someclass</packageName>
             </manifest>
             <manifestEntries>
                  <mode>development</mode>
                  <url>${pom.url}</url>
              </manifestEntries>
            </archive>
          </configuration>
      </plugin>