读书人

Maven私服的装配及使用

发布时间: 2013-07-09 09:50:47 作者: rapoo

Maven私服的安装及使用
<repositories> <repository> <id>artifactory</id> <name>your local artifactory</name> <url>http://localhost:8081/artifactory/repo</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>artifactory</id> <name>your local artifactory</name> <url>http://localhost:8081/artifactory/plugins-releases</url> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories>

pom中要写入jar包,可以通过私服找也可以通过:http://search.maven.org/ 找到
Maven私用使用:
? 在"xx"文件夹中启动私服的工具:nexus_start.bat
? maven 私用启动后在IE 输入:http://127.0.0.1:8081/nexus 即可


Maven私服的装配及使用
?

username:admin
password:admin123


Maven私服的装配及使用
?

读书人网 >编程

热点推荐