Maven下载
https://maven.apache.org/
下载之后解压到非中文无空格目录
maven自身的配置
在你的解压目录下的conf->setting.xml
指定本地仓库
Maven会把它替我们下载的 jar 包保存到本地仓库。默认这个本地仓库是在C盘,如果不介意的话,可以不用改。
| The path to the local repository maven will use to store artifacts.
|
| Default: ${user.home}/.m2/repository
<localRepository>/path/to/local/repo</localRepository>
-->
<!-- conf/settings.xml 55行 -->
<localRepository>D:\Program Files\Maven\repository</localRepository>
指定国内镜像仓库地址
这里是要放在这一对标签里面
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
设置Maven工程的 JDK 版本
默认的版本是jdk5 <profiles>在这个标签里面</profiles>
<!--在profiles节点(标签)下添加jdk编译版本 268行附近-->
<profile>
<id>jdk-17</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>17</jdk>
</activation>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
</properties>
</profile>
Maven配置环境变量
MAVEN_HOME
XXX_HOME 指向 bin 目录的上一级 (也就是没有到bin)
Path
Path 指向 bin 目录本身
你也可以直接配置到bin目录
测试
mvn -v