解压
配置系统变量,新建变量 MAVEN_HOME
,值为解压 Maven 的根目录。同时在 Path 下新建 %MAVEN_HOME%\\bin
验证环境变量的配置:cmd → mvn -version
配置本地仓库:修改 conf/settings.xml 中的 <localRepository>(大概在第 53 行,被注释掉了,粘贴出来,中间修改成自己仓库的地址)
配置阿里云私服(提高下载速度,不过都挂梯子了,懒得配估计也没关系):修改 <mirrors> 标签:
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url><http://maven.aliyun.com/nexus/content/groups/public/></url>
<mirrorOf>central</mirrorOf>
</mirror>
配置 Maven 工程的基础 JDK 版本
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>