oschina maven库配置

配置setting.xml文件

添加如下内容

  <mirrors>
    <!-- mirror
     | Specifies a repository mirror site to use instead of a given repository. The repository that
     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
     |
    <mirror>
      <id>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>
     -->
	<mirror>
      <id>nexus-osc</id>
      <mirrorOf>*</mirrorOf>
      <name>Nexus osc</name>
      <url>http://maven.oschina.net/content/groups/public/</url>
    </mirror>
  </mirrors>
 <profiles>
 <profile>
      <id>jdk-1.7</id>
      <activation>
         <jdk>1.7</jdk>
      </activation>
   <repositories>
	 <repository>
	    <id>nexus</id>
	    <name>local private nexus</name>
	    <url>http://maven.oschina.net/content/groups/public/</url>
	    <releases>
	       <enabled>true</enabled>
	    </releases>
	    <snapshots>
	       <enabled>false</enabled>
	    </snapshots>
	       </repository>
   </repositories>
   <pluginRepositories>
	 <pluginRepository>
	    <id>nexus</id>
	    <name>local private nexus</name>
            <url>http://maven.oschina.net/content/groups/public/</url>
            <releases>
               <enabled>true</enabled>
            </releases>
            <snapshots>
               <enabled>false</enabled>
            </snapshots>
	  </pluginRepository>
    </pluginRepositories>
 </profile>
 </profiles>




你可能感兴趣的:(maven仓库,oschina)