我想使用 maven 构建一个独立的 jar 程序,但是目标中的输出不包含引用的 jar 库,我怎样才能将它们包含在我的目标中?
问问题
42 次
1 回答
1
在 pom.xml 中使用以下内容并构建 jar,使用程序集插件
<plugins>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>package-jar-with-dependencies</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>xxxxx</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
于 2013-09-10T02:31:29.777 回答