赞
踩
配置maven项目的远程仓库
- <repositories>
- <repository>
- <id>nexus</id>
- <name>Nexus Repository</name>
- <url>远程仓库地址</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled> <!--snapshots默认是关闭的,需要开启 -->
- </snapshots>
- </repository>
- </repositories>
配置maven插件的远程仓库
- <pluginRepositories>
- <pluginRepository>
- <id>nexus</id>
- <name>Team Nexus Repository</name>
- <url>远程仓库地址</url>
- </pluginRepository>
- </pluginRepositories>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。