我很遗憾在这里听起来很无知,但我是Maven的新手,并且一直在抨击我确信非常简单的东西。
docs说:
[...]项目可以生成一个ZIP程序集,其中包含根目录中项目的JAR工件,lib /目录中的运行时依赖项以及用于启动独立应用程序的shell脚本。
完全我想做什么!但我似乎无法实现它。
我的POM如下:
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.anearalone</groupId>
<artifactId>myapp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
[...]
<build>
<finalName>myapp</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assemble/dist.xml</descriptor>
</descriptors>
<archive>
<manifest>
<mainClass>com.anearalone.myapp.CLI</mainClass>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
[...]
</project>
,引用的dist.xml如下所示:
<assembly>
<id>dist</id>
<formats>
<format>zip</format>
</formats>
<files>
<file>
<outputDirectory>/</outputDirectory>
<source>src/main/bin/arkify.sh</source>
<fileMode>755</fileMode>
</file>
</files>
<dependencySets>
<dependencySet>
<useProjectArtifact>false</useProjectArtifact>
<includes>
<include>*:jar</include>
</includes>
<outputDirectory>/lib</outputDirectory>
</dependencySet>
<dependencySet>
<useProjectArtifact>true</useProjectArtifact>
<includes>
<include>com.anearalone:myapp:jar:0.0.1-SNAPSHOT</include>
</includes>
<outputDirectory>/</outputDirectory>
</dependencySet>
</dependencySets>
</assembly>
这实现了我想要的zip文件布局(虽然我很确定我没有以正确的方式到达那里)但是我在target/
得到两个罐子(一个在zip存档中,其他在根目录中),并且它们都没有在结果MANIFEST.MF
中包含我的mainClass条目。
如果我将project.packaging
更改为“pom”,我认为这可能是正确的,当然额外的jar(在target/
的根目录中消失了,但我收到了这些警告:
[WARNING] Cannot include project artifact: com.anearalone:myapp:pom:0.0.1-SNAPSHOT; it doesn't have an associated file or directory.
[WARNING] The following patterns were never triggered in this artifact inclusion filter:
o 'com.anearalone:myapp'
...确实我的工件不在存档中,并且仍然没有向MANIFEST.MF
添加任何条目。
任何人都有时间帮助初学者吗?
答案 0 :(得分:9)
如果我正确理解您的问题,您的ZIP已正确创建,但其中包含的my-app-0.0.1-SNAPSHOT
(以及直接位于target/
目录中的JAR)不包括您的主要类MANIFEST.MF
档案?
事实上,assembly
插件并非专门用于执行此类任务。这是JAR plugin的任务,它提供了一种在MANIFEST.MF
the main class of your project中指示的方式。您只需在当前pom.xml
中添加此配置:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
...
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>my.app.MainClass</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
关于您尝试将项目的包装更改为pom
包装:这是一个坏主意;)实际上,pom
包装用于项目而没有任何其他资源而不是{{ 1}}本身。对于定义为the parent of others projects或aggregate multiples modules的pom.xml
非常有用。