Bootstrap

Maven下载&配置

Win

下载

https://maven.apache.org/

  • 在主页面点击Download

在这里插入图片描述

  • 点击archives
    • 最好不要下载使用新版本,我使用的是maven-3.6.3,我们点击页面下方的archives,能进入maven历史版本页面

在这里插入图片描述

  • 点击要下载的版本

在这里插入图片描述

  • 点击binaries

在这里插入图片描述

  • 下载所需要的压缩包

在这里插入图片描述

  • 解压后的目录

在这里插入图片描述

配置maven的环境变量

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

Mac

下载

在这里插入图片描述

安装

放在一个纯英文的目录下解压即可

配置环境变量

MAVEN_HOME地址就是自己存放解压目录的地方

#Maven
export MAVEN_HOME=/Users/sunhaixin/Develop/Maven/apache-maven-3.9.9
export PATH=${MAVEN_HOME}/bin:$PATH:.
mvn-v 查询是否成功

在这里插入图片描述

MavenSetting.xml文件配置

  • 打开setting.xml文件
    在这里插入图片描述
  • 配置本地Maven仓库
    • 大约在55行位置(记得在上面的注释内容下面添加这行代码)加入这一行代码。
    • 这行代码的作用:本地maven仓库所在的位置,也可以不添加的,它的默认位置是在c盘,
    • 这个仓库存放项目需要的jar包,非常占用内存,所以建议不要放在c盘,而是存放在自定义的位置。
# Win
<localRepository>D:/Develop/Maven/localRepo</localRepository>
# Mac
<localRepository>/Users/sunhaixin/Develop/maven/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>

在这里插入图片描述

  • 设置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>

在这里插入图片描述

;