Maven
安装Maven
wget http://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip
unzip apache-maven-3.6.3-bin.zip -d /usr/local
echo "export MAVEN_HOME=/usr/local/apache-maven-3.6.3" >> /etc/profile
echo "export PATH=$PATH:$MAVEN_HOME/bin" >> /etc/profile
source /etc/profile
修改配置文件
vim $MAVEN_HOME/conf/settings.xml
<!-- 在<mirrors>中增加阿里仓库 -->
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
常用命令
# maven项目打成jar包
mvn clean install -DskipTests
# 编译业务代码
mvn compile
# 编译测试代码
mvn test-compile