maven nexus 搭建私服_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > maven nexus 搭建私服

maven nexus 搭建私服

 2012/4/15 1:21:58  柴秉承  程序员俱乐部  我要评论(0)
  • 摘要:参考:http://www.sonatype.com/books/nexus-book/reference/关于nexus的安装m2eclipse不做介绍配置很简单有一点需要注意就是修改settings.xml里面的内容为一下内容不需要那些dtd头因为dtd的问题调了一下午<settings><mirrors><mirror><!--Thissendseverythingelseto/public--><id>nexus<
  • 标签:Nexus Maven

参考:http://www.sonatype.com/books/nexus-book/reference/

?

关于nexus的安装 m2eclipse 不做介绍 ?配置很简单 有一点需要注意就是修改settings.xml里面的内容 为一下内容 不需要 那些dtd头 因为dtd的问题 调了一下午?

?

<settings>
  <mirrors>
    <mirror>
      <!--This sends everything else to /public -->
      <id>nexus</id>
      <mirrorOf>*</mirrorOf>
      <url>http://localhost:8081/nexus/content/groups/public</url>
    </mirror>
  </mirrors>
  <profiles>
    <profile>
      <id>nexus</id>
      <!--Enable snapshots for the built in central repo to direct -->
      <!--all requests to nexus via the mirror -->
      <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>
    <!--make the profile active all the time -->
    <activeProfile>nexus</activeProfile>
  </activeProfiles>
</settings>
?
发表评论
用户名: 匿名