maven打包普通java程序没有添加依赖问题
Posted 老篮孩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven打包普通java程序没有添加依赖问题相关的知识,希望对你有一定的参考价值。
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>com.lyf.dm.DaMa</mainClass> //这里是你的包含mian方法的类 </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
在pom.xml加入该配置解决
以上是关于maven打包普通java程序没有添加依赖问题的主要内容,如果未能解决你的问题,请参考以下文章
请问maven工程jar包,war包,pom打包,都是怎么定的?