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

maven的使用

时间:2017-04-03 11:50:06      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:mave   code   UI   pack   images   org   http   cti   exe   

maven的基本使用


1.基本知识图

技术分享

 2.打包时顺便打源码包

  通过插件在指定阶段附加目标goal

  <build>
      <plugins>
          <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-source-plugin</artifactId>
              <version>2.4</version>
              <executions>
                  <execution>
                      <phase>package</phase>
                      <goals>
                          <goal>
                          jar-no-fork
                          </goal>
                      </goals>
                  </execution>
              </executions>
          </plugin>
      </plugins>
  </build>
</project>

 

maven的使用

标签:mave   code   UI   pack   images   org   http   cti   exe   

原文地址:http://www.cnblogs.com/gsonkeno/p/6661398.html

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