Maven中setting.xml配置Demo

 <!-- 指定本地默认仓库 -->
<localRepository>G:\Java\apache-maven-3.5.2\repository</localRepository>
    <!-- 国内远程仓库:阿里云镜像 -->
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
    <!-- 修改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>
上一篇:Maven .m2 setting.xml配置


下一篇:maven的setting.xml文件中只配置本地仓库路径的方法