- 增加跳过测试代码的编译命令: -Dmaven.test.skip=true;
- 增加编译 -Dmaven.compile.fork=true 参数,用以指明使用多线程进行编译;
- 如果用的 Maven 是3.×以上版本,可以增加 -T 1C 参数,表示使用每个 CPU 核心跑一个工程;
完整的打包命令如下:
mvn clean package -T 1C -Dmaven.test.skip=true -Dmaven.compile.fork=true
很多公司在使用maven私服的时候为了优化磁盘空间,去除不必要的文件。如果是单pom项目中在配置中引入
true true
如果项目是module的情况,当parent的pom在deploy时,默认会将所有子module都deploy到私服中,如果不想让某个子module部署到仓库,可以在子module的pom中加入上述配置。install同理
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)