Maven(nexus项目发布)
http://blog.sina.com.cn/s/blog_6fe280b701012trj.html
1.pom.xml配置发布的release仓库和snapshot仓库
<distributionManagement>
<snapshotRepository>
<id>snapshots-riil</id>
<name>Snapshots</name>
<url>http://172.16.13.111:8081/nexus/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>releases-riil</id>
<name>Releases</name>
<url>http://172.16.13.111:8081/nexus/content/repositories/releases/</url>
</repository>
</distributionManagement>
2.默认的用户权限
nexus默认有三个用户
admin:系统管理员
deployment:部署权限
anonmous:只有访问权限
<server>
<id>snapshots-riil</id>
<username>deployment</username>
<password>deployment123</password>
</server>
<server>
<id>releases-riil</id>
<username>deployment</username>
<password>deployment123</password>
</server>
5.查看部署是否成功