linux虚拟机环境搭建--04.maven安装

【安装maven】
1.解压:tar zxvf apache-maven-3.3.9-bin.tar.gz

2.添加环境变量:
打开 /etc/profile, 添加如下内容:
export M2_HOME=/root/workspace/software/apache-maven-3.3.9
export MAVEN_OPTS=-Xms256m-Xmx512m
export PATH=$PATH:$M2_HOME/bin

3.使编辑生效 source /etc/profile

4.验证:mvn -v

mirror网址不正确会造成, .lastUpdated文件不下载jar包


5.修改配置文件

<localRepository>E:/apache-maven-jar</localRepository>   


<mirror>    
          <id>repo2</id>    
          <mirrorOf>central</mirrorOf>    
          <name>Human Readable Name for this Mirror.</name>    
          <url>http://repo2.maven.org/maven2/</url>    
    </mirror>    
    <mirror>    
          <id>net-cn</id>    
          <mirrorOf>central</mirrorOf>    
          <name>Human Readable Name for this Mirror.</name>    
          <url>http://maven.net.cn/content/groups/public/</url>     
    </mirror>    
    <mirror>    
          <id>ui</id>    
          <mirrorOf>central</mirrorOf>    
          <name>Human Readable Name for this Mirror.</name>    
         <url>http://uk.maven.org/maven2/</url>    
    </mirror>    
    <mirror>    
          <id>ibiblio</id>    
          <mirrorOf>central</mirrorOf>    
          <name>Human Readable Name for this Mirror.</name>    
         <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</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>  
      
      
    <mirror>    
          <id>JBossJBPM</id>   
        <mirrorOf>central</mirrorOf>   
        <name>JBossJBPM Repository</name>   
        <url>https://repository.jboss.org/nexus/content/repositories/releases/</url>  
    </mirror>  
    

猜你喜欢

转载自blog.csdn.net/weixin_42296389/article/details/80841659
今日推荐