码迷,mamicode.com
首页 > 编程语言 > 详细

maven打包jar文件

时间:2020-05-14 12:53:56      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:conf   pid   art   res   org   als   cti   col   oal   

             <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文件

标签:conf   pid   art   res   org   als   cti   col   oal   

原文地址:https://www.cnblogs.com/chong-zuo3322/p/12887709.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!