linux搭建maven環境

linux搭建maven環境

maven基於java,使用的前提是安裝配置好jdk.java

下載並配置maven

下載

sudo apt-get install mavenlinux

配置

  1. 查看安裝路徑,並記錄下來markdown

    whereis mavenmaven

  2. 添加環境變量ide

    sudo vi /etc/profile
    添加:
    export M2_HOME=/usr/lib/maven
    export PATH=${M2_HOME}/bin:$PATH
    保存退出profile
    執行:
    source /etc/profile測試

  3. 更改mvn權限url

    sudo chmod 777 maven/bin/mvnxml

  4. 測試get

    mvn -vit

  5. 打開config文件

    sudo vi /usr/lib/maven/conf/settings.xml

  6. 添加本地倉庫

    <localRepository>/home/maven-repo</localRepository>

  7. 添加國內鏡像,要在<mirrors>標籤裏添加
    <mirror>
    <id>alimaven</id>
    <name>aliyun maven</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>; <mirrorOf>central</mirrorOf></mirror>
相關文章
相關標籤/搜索