首页 > 代码库 > Maven3配置远程仓库

Maven3配置远程仓库

http://blog.csdn.net/peterwanghao/article/details/7742811



<profiles>
   <profile>
      <id>cloudhopper</id>


      <repositories>
        <repository>
          <id>cloudhopper</id>
          <name>Repository for Cloudhopper</name>
          <url>http://maven.cloudhopper.com/repos/third-party/</url>
          <releases>     
            <enabled>true</enabled>     
          </releases>     
          <snapshots>     
            <enabled>false</enabled>     
          </snapshots>
        </repository>
      </repositories>
    </profile>
  </profiles>
<activeProfiles>
    <activeProfile>cloudhopper</activeProfile>
  </activeProfiles>

Maven3配置远程仓库