maven 打 fat包(jar包有了全部依赖)插件

Posted --LP--

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven 打 fat包(jar包有了全部依赖)插件相关的知识,希望对你有一定的参考价值。

            <plugin>
                   <artifactId> maven-assembly-plugin </artifactId>
                   <configuration>
                        <descriptorRefs>
                             <descriptorRef>jar-with-dependencies</descriptorRef>
                        </descriptorRefs>
                        <archive>
                             <manifest>
                                  <mainClass>com.cetc.di.App</mainClass>
                             </manifest>
                        </archive>
                   </configuration>
                   <executions>
                        <execution>
                             <id>make-assembly</id>
                             <phase>package</phase>
                             <goals>
                                  <goal>single</goal>
                             </goals>
                        </execution>
                   </executions>
              </plugin>


<mainClass>com.cetc.di.App</mainClass>   声明的是   java -jar ****.jar运行时的主方法

关于此显示声明主方法的文件在 jar包解压出来的 ..\META-INF\MANIFEST.MF 里面显示声明直接执行时的主方法
如:Main-Class: com.corundumstudio.socketio.demo.ChatLauncher

若 jar包里还有其他main方法 运行这样的命令(windows环境)
如:java -classpath .\demo-1.0.0-SNAPSHOT-jar-with-dependencies.jar com.corundumstudio.socketio.demo.NamespaceChatLauncher
包名-------------------------->包含要执行的main方法的类名










以上是关于maven 打 fat包(jar包有了全部依赖)插件的主要内容,如果未能解决你的问题,请参考以下文章

Maven怎么处理引用的jar版本冲突

IDEA右侧 Maven oracle依赖包有红色波浪线

修改fat-jar名称

Maven项目打Jar包,如何添加依赖

maven常用插件pom配置

maven打jar包并将依赖包打进去