1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| <repositories> <repository> <id>nexus_public</id> <url>http://nexus.hantianwei.com:9002/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>nexus_public</id> <url>http://nexus.hantianwei.com:9002/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> <distributionManagement> <repository> <id>nexus_public</id> <name>Nexus Release Repository</name> <url>http://nexus.hantianwei.com:9002/nexus/content/repositories/releases/</url> </repository> <snapshotRepository> <id>nexus_public</id> <name>Nexus Snapshot Repository</name> <url>http://nexus.hantianwei.com:9002/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement>
|