ubuntu下安装maven

下载maven

http://maven.apache.org/download.cgi 
解压
tar -xzvf apache-maven-3.0.5-bin.tar.gz

配置环境变量

sudo vim /etc/profile
添加
export M2_HOME=/home/weibo/apache-maven-3.0.5
export M2=$M2_HOME/bin
export PATH=$M2:$PATH
保存 
source profile

测试

mvn -version

OK 

公司的maven还需要配置settings.xml(maven包的conf里的settings.xml可不用管)
把附件中的文件放到存放类库的位置(一般是{user.dir}/.m2/里)
注意更改其中的的值














D:\m2\repo 


releases
maven
secret


snapshots
maven
secret












alibaba


central
Alibaba Repositories Group
http://repo.alibaba-inc.com/nexus/content/groups/alirepositiry/


                pwatir
              http://maven.pwatir.com/artifactory/repo/
           








                                        central
                                        Alibaba Plugin Repos Group
                                        http://repo.alibaba-inc.com/nexus/content/groups/alirepositiry/






            android
           
               
                    D:\android_ide\sdk
               

           

       






com.alibaba.org.apache.maven.plugins
com.alibaba.maven.plugins


                alibaba
android


你可能感兴趣的:(ubuntu,maven)