Nexus和Maven集成的两种方式
<repositories> <repository> <id>public</id> <name>Public Repositories</name> <url>http://localhost:9002/nexus/content/repositories/central</url><releases><enabled>true</enabled></releases><snapshots><enabled>false</enabled></snapshots> </repository> </repositories><pluginRepositories> <pluginRepository> <id>public</id> <name>Public Repositories</name> <url>http://localhost:9002/nexus/content/repositories/central</url><releases><enabled>true</enabled></releases><snapshots><enabled>false</enabled></snapshots> </pluginRepository> </pluginRepositories>
?
? ? ?很显然,使用方式2需要在所有项目的pom.xml文件中进行配置,造成了重复,如果同时使用方式1和方式2进行了配置,那么Maven会优先使用settings.xml文件中的镜像地址进行查找.