eclipse 配置maven
程序员文章站
2022-03-15 23:31:06
...
1.下载maven
地址:http://maven.apache.org/release-notes-all.html
2.配置环境变量
新建系统变量:MAVEN_HOME = 你的maven解压路径
在系统变量path变量末尾加入%MAVEN_HOME%\bin;
3.现在我们打开 cmd,输入:mvn -v
出现
maven安装成功
4,配置 Maven 的conf文件夹中配置文件settings.xml。
打开Maven 的conf文件夹中配置文件settings.xml
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<!-- localRepository
| The path to the local repository maven will use to store artifacts.
|
| Default: ${user.home}/.m2/repository
<localRepository>/path/to/local/repo</localRepository>
-->
<localRepository>你的仓库路径(不能有中文)</localRepository>
</settings>
cmd下输入mvn help:system
等待一段时间出现:
之后在你的仓库路径下出现一堆文件