maven打jar包(包括依赖jar)
Posted Love丶陳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven打jar包(包括依赖jar)相关的知识,希望对你有一定的参考价值。
<build> <plugins> <plugin> <artifactId> maven-assembly-plugin </artifactId> <configuration> <descriptorRefs> <descriptorRef> jar-with-dependencies </descriptorRef> </descriptorRefs> </configuration> </plugin> </plugins> </build>
右键pom Run As install build
以上是关于maven打jar包(包括依赖jar)的主要内容,如果未能解决你的问题,请参考以下文章
05_SpringBoot打jar/war包解决第三方依赖jar包的问题
用maven打包jar项目其中很多模块引用了相同jar包,如何把它些jar公用,让maven打包不把这公用包打进去