Maven下载安装及配置
新手上路,被maven的各种问题整的很是烦恼,写一份自己走通的配置方法。
1 Maven的下载安装
-
最新版本为3.6.3,旧版本可点击
archives
-
我下的是3.6.1, 直接将安装本解压缩到指定目录即可
-
配置maven的环境变量,变量值即为解压缩的文件路径
-
添加到path路径
-
以上就完成了整个Maven的配置
2 maven仓库配置和镜像下载地址
- 设置自定义的maven仓库
- 再maven目录下新建
repository
文件夹 - 找到
maven/conf
文件下的配置文件setting.xml
-
设置自定义的仓库地址
<localRepository>D:\maven\repository</localRepository>
- 镜像下载地址配置
<mirrors>
<mirror>
<id>aliyunmaven</id>
<mirrorOf>*</mirrorOf>
<name>阿里云公共仓库</name>
<url>https://maven.aliyun.com/repository/public</url>
</mirror>
<!-- mirror
| Specifies a repository mirror site to use instead of a given repository. The repository that
| this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
| for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
|
<mirror>
<id>mirrorId</id>
<mirrorOf>repositoryId</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://my.repository.com/repo/path</url>
</mirror>
-->
</mirrors>
-
JDK
默认配置
<profiles>
<profile>
<id>jdk18</id>
<activation>
<jdk>1.8</jdk>
<activeByDefault>true</activeByDefault>
</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>
</profiles>
3 IDEA的相关配置
-
新建一个maven工程
步骤一 -
设置配置文件路径和仓库路径
image.png -
创建成功
image.png
网友评论