配置JDK版本

修改settings.xml ,添加如下内容,配置为JDK1.8

  1. <profile>
  2. <id>jdk-1.8</id>
  3. <activation>
  4. <activeByDefault>true</activeByDefault>
  5. <jdk>1.8</jdk>
  6. </activation>
  7. <properties>
  8. <maven.compiler.source>1.8</maven.compiler.source>
  9. <maven.compiler.target>1.8</maven.compiler.target>
  10. <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  11. </properties>
  12. </profile>

配置Maven阿里镜像源

修改settings.xml ,添加如下内容,配置为阿里云镜像

  1. <mirror>
  2. <id>nexus-aliyun</id>
  3. <mirrorOf>central</mirrorOf>
  4. <name>Nexus aliyun</name>
  5. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  6. </mirror>

配置Maven本地仓库

修改settings.xml ,添加如下内容

  1. <localRepository>/opt/apache-maven-3.6.0/repository</localRepository>