【背景】
买了个surface,带到公司当做开发机器来用,各种环境都需要重新安装,写个笔记记录下maven安装步骤,虽然很简单,但是我这脑子,容易忘记,写下来以备用
【开工】
安装Maven
访问 Maven 的下载页面:http://maven.apache.org/download.html,其中包含针对不同平台的各种版本的 Maven 下载文件,我这里下载的版本是3.0.5:http://pan.baidu.com/s/1kT5GYaV
下载完成之后,解压至:C:\career\tools\maven\apache-maven-3.0.5
添加环境变量:MVN_HOMME为C:/career/tools/maven/apache-maven-3.0.5,将bin设置到PATH,在PATH末尾添加:;%MVN_HOME%/bin
创建本地仓库位置,建立目录:C:\career\tools\maven\repositories\A-repository\repo
修改maven/conf/settings.xml文件:
搜索localRepository,并更新第4步的仓库地址,以后这里将存放jar包:
<localRepository>C:/career/tools/maven/repositories/oecs-repository/repo</localRepository>
搜索profiles,在里面添加一个profile:
<profile> <id>develop</id> <repositories> <repository> <id>remote-nexus</id> <name>remote-nexus</name> <url>http://192.168.200.203:9090/nexus/content/groups/public</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>remote-nexus</id> <name>remote-nexus</name> <url>http://192.168.200.203:9090/nexus/content/groups/public</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile>
搜索servers,在里面添加snapshots和releases的登录nexus的用户名和密码,此数据将在打包上传至私服时使用:
<server> <id>nexus-releases</id> <username>admin</username> <password>admin123</password> </server> <server> <id>nexus-snapshots</id> <username>admin</username> <password>admin123</password> </server>
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索maven
, http
, 搜索
, tools
, nexus
, maven dependencie
, true
, maven eclipse
, admin
, sonatype nexus私服
, eclipse maven
, sonatype nexus
, maven 3
maven release svn nexus
eclipse安装配置maven、eclipse maven 配置、eclipse配置maven环境、eclipse中配置maven、eclipse中maven的配置,以便于您获取更多的相关知识。