外观
maven
120字小于1分钟
2020-09-06
配置
配置远端仓库
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>配置环境变量
#set maven environment
export MAVEN_HOME=/home/program/apache-maven-3.6.3
export PATH=$MAVEN_HOME/bin:$PATH使用
安装本地jar
mvn install:install-file -Dfile=/Users/jinchen/Downloads/j2v8_macos_x86_64-5.1.1-RELEASE.jar -DgroupId=com.eclipsesource.j2v8 -DartifactId=j2v8_macos_x86_64 -Dversion=5.1.1-RELEASE -Dpackaging=jar
构建
mvn clean install
-- 强制更新
mvn clean install -U
-- 跳过代码检查
mvn clean install -Dmaven.test.skip=true -Dcheckstyle.skip=true
-- 跳过jar下载
mvn compile -o -Dmaven.test.skip=true -Dcheckstyle.skip=true