码迷,mamicode.com
首页 > 其他好文 > 详细

MAVEN的基础使用

时间:2020-03-18 13:54:20      阅读:54      评论:0      收藏:0      [点我收藏+]

标签: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>

<!-- 阿里云仓库 -->

MAVEN的基础使用

标签:play   ima   图片   com   his   mamicode   prope   国内   vat   

原文地址:https://www.cnblogs.com/guanblog/p/12516533.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!