美文网首页
Maven 下载 & 配置

Maven 下载 & 配置

作者: MrLimLee | 来源:发表于2020-04-02 17:29 被阅读0次
    Maven

    Maven 下载 & 配置


    Maven 官网&下载

    官网:http://maven.apache.org

    下载:Binary zip archive apache-maven-3.6.3-bin.zip

    Maven 环境变量配置

    1. cd /Users/lizm/
    2. vim .bash_profile

    添加如下配置:

    M2_HOME=/Users/lizm/Documents/maven/apache-maven-3.6.3
    PATH=$M2_HOME/bin:$PATH
    
    export M2_HOME
    export PATH
    
    • 生效:source .bash_profile

    Maven 配置 settings.xml

    配置文件目录:apache-maven-3.6.3/conf/settings.xml

    <?xml version="1.0" encoding="UTF-8"?>
    
    <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>C:\ttjr\source\repo</localRepository>
    
      <pluginGroups>
      </pluginGroups>
    
      <proxies>
      </proxies>
    
      <servers>
      </servers>
    
      <mirrors>
    
        <!-- 增加国内镜像 -->
        <mirror>
            <id>alimaven-central</id>
            <mirrorOf>central</mirrorOf>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
        </mirror>
        <mirror>
            <id>jboss-public-repository-group</id>
            <mirrorOf>central</mirrorOf>
            <name>JBoss Public Repository Group</name>
            <url>http://repository.jboss.org/nexus/content/groups/public</url>
        </mirror>
    
      </mirrors>
    
      <profiles>
    
        <!-- Maven 编译器修改为 1.8 -->
        <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>
    
    </settings>
    
    
    

    相关文章

      网友评论

          本文标题:Maven 下载 & 配置

          本文链接:https://www.haomeiwen.com/subject/tatfphtx.html