码迷,mamicode.com
首页 > 其他好文 > 详细

maven 打包添加依赖包

时间:2019-02-28 22:43:07      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:cut   append   depend   pac   config   maven 打包   build   maven   exe   

<build>
  <plugins>
    <plugin>
      <artifactId>maven-assembly-plugin</artifactId>
      <configuration>
        <appendAssemblyId>false</appendAssemblyId>
        <descriptorRefs>
          <descriptorRef>jar-with-dependencies</descriptorRef>
        </descriptorRefs>
        <archive>
          <manifest>
            <mainClass>com.XXX.XXX.App</mainClass> //主类名称
          </manifest>
        </archive>
      </configuration>
      <executions>
        <execution>
          <id>make-assembly</id>
          <phase>package</phase>
          <goals>
            <goal>assembly</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
  </plugins>
</build>

 

maven 打包添加依赖包

标签:cut   append   depend   pac   config   maven 打包   build   maven   exe   

原文地址:https://www.cnblogs.com/lihao7/p/10453652.html

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