java-maven 全局常用命令

java-maven 全局常用命令


一、maven 多环境打包命令
#开发环境打包
clean install -Dmaven.test.skip=true -Pdev package
 
#跳过测试
clean install -Dmaven.test.skip=true -Ptest package


#生成环境打包  
clean install -Dmaven.test.skip=true -Pproduct package


二、全局 maven run 命令
#编译项目
name:compile-编译
base directory:${project_loc}
goals:clean compile


#打包使用默认环境
name:install - 默认
base directory:${project_loc}
goals:clean install -Dmaven.test.skip=true


#打包研发环境
name:install - dev
base directory:${project_loc}
goals:clean install -Dmaven.test.skip=true -Pdev package


#打包生产环境
name:install - product
base directory:${project_loc}
goals:clean install -Dmaven.test.skip=true -Pproduct package


#打包测试环境
name:install - test
base directory:${project_loc}
goals:clean install -Dmaven.test.skip=true -Ptest package

你可能感兴趣的:(java)