maven打包jar文件
Posted 泡椒炒甜瓜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven打包jar文件相关的知识,希望对你有一定的参考价值。
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.study.App</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin>
打包之后,即可通过 java -jar xxx.jar 运行
以上是关于maven打包jar文件的主要内容,如果未能解决你的问题,请参考以下文章
maven常用的lifecycle,clean/install/deploy,maven打包jar包,maven打包强制拉取最新依赖