标签: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>
标签:mave code UI pack images org http cti exe
原文地址:http://www.cnblogs.com/gsonkeno/p/6661398.html