Maven的作用以及软件下载安装
作用:
Maven生命周期
maven中央仓库,查看坐标网址
- <mirror>
- <id>alimaven</id>
- <name>aliyun maven</name>
- <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
- <mirrorOf>central</mirrorOf>
- </mirror>
复制代码 maven下载(apache-maven-3.9.11-bin.zip):
maven环境变量配置:
maven环境变量配置
5). 配置关联的JDK版本(可选)
进入到conf目录下修改settings.xml配置文件,在 <profiles> </profiles>中增加如下配置:
- <profile>
- <id>jdk-21</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- <jdk>21</jdk>
- </activation>
- <properties>
- <maven.compiler.source>21</maven.compiler.source>
- <maven.compiler.target>21</maven.compiler.target>
- <maven.compiler.compilerVersion>21</maven.compiler.compilerVersion>
- </properties>
- </profile>
复制代码 最后上个设置好maven的配置干货:
settings.zip
(3.97 KB, 下载次数: 0, 售价: 10 金币)
|