标签:play ima 图片 com his mamicode prope 国内 vat
前提:jdk安装完毕
1.环境变量的配置
添加M2_HOME:对应Maven的解压目录即可。
添加到path下
3.使用mvn -v 看是否配置成功
4.修改配置文件
4.1 本地仓库位置修改
<localRepository>D:\tools\repository</localRepository> |
4.2 修改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> |
4.3 添加国内镜像
<mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> </mirror> <!-- 中央仓库1 --> <mirror> <id>repo1</id> <mirrorOf>central</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://repo1.maven.org/maven2/</url> </mirror> <!-- 中央仓库2 --> <mirror> <id>repo2</id> <mirrorOf>central</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://repo2.maven.org/maven2/</url> </mirror> |
<!-- 阿里云仓库 -->
标签:play ima 图片 com his mamicode prope 国内 vat
原文地址:https://www.cnblogs.com/guanblog/p/12516533.html