<modelVersion>4.0.0</modelVersion> 模型版本(固定) 工程发布的定位坐标 <groupId>com.yc.maven</groupId> 包的前缀名 <artifactId>maven-hello</artifactId> 模块名 <version>snapshot.0.0.1</version> 版本号 snapshot开发版 release稳定版 <packaging>jar</packaging> <!--最后打包成什么(默认为jar)-->
<pre name="code" class="html"> <span style="font-family: Arial, Helvetica, sans-serif;"><repositories></span><repository><id>nexus</id><name>Nexus</name><url>http://私服nexus的ip地址:8081/nexus/content/groups/public/</url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></repository></repositories><pluginRepositories><pluginRepository><id>nexus</id><name>Nexus</name><url>http://私服nexus的ip地址:8081/nexus/content/groups/public/</url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></pluginRepository></pluginRepositories>
<profiles> <profile> <id>nexus</id> <repositories> <repository> <id>nexus</id> <name>Nexus</name> <url>http://私服nexus的ip地址:8081/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>nexus</id> <name>Nexus</name> <url>http://私服nexus的ip地址:8081/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile> </profiles> <activeProfiles> <activeProfile>nexus</activeProfile> </activeProfiles>
<mirrors> <mirror> <id>nexus</id> <mirrorof>*</mirrorof> <url>http://私服nexus的ip地址:8081/nexus/content/groups/public/</url> </mirror> </mirrors> <profiles> <profile> <id>nexus</id> <repositories> <repository> <id>central</id> <url>http://central</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>central</id> <url>http://central</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile> </profiles> <activeProfiles> <activeProfile>nexus</activeProfile> </activeProfiles>
<distributionManagement> <repository> <id>nexus-releases</id> <name>Nexus Releases Repositories</name> <url>http://218.196.14.220:8081/nexus/content/repositories/releases/</url> </repository> <snapshotRepository> <id>nexus-snapshots</id> <name>Nexus Snapshots Repositories</name> <url>http://218.196.14.220:8081/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement>
<span style="white-space:pre"> </span><servers> <server> <id>nexus-releases</id> <username>admin</username> <password>admin123</password> </server> <server> <id>nexus-snapshots</id> <username>admin</username> <password>admin123</password> </server> </servers>
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文:http://blog.csdn.net/wild_elegance_k/article/details/47171397