maven 打包添加依赖包
Posted cleaver
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven 打包添加依赖包相关的知识,希望对你有一定的参考价值。
<build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <appendAssemblyId>false</appendAssemblyId> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>com.XXX.XXX.App</mainClass> //主类名称 </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>assembly</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
以上是关于maven 打包添加依赖包的主要内容,如果未能解决你的问题,请参考以下文章
Maven pom.xml 添加本地jar包依赖以及打包方法