如何构建一个jar包含引用的jar库使用maven

时间:2013-09-10 02:26:43

标签: java maven build

我想使用maven构建一个独立的jar程序,但是target中的输出不包含引用的jar库,我怎样才能将它们包含在我的目标中?

1 个答案:

答案 0 :(得分: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>