Nexus can't find artifact that is in Maven Central(SNAPSHOT)

Nexus can't find artifact that is in Maven Central(SNAPSHOT)

 

 

        因为使用的是SNAPSHOT 所以需要将打开自动下载profile,这样对于新产生的SNAPSHOT版本,maven会自动下载,就不会出现SNAPSHOT不能自动下载的问题了。

 

        <snapshots><enabled>true</enabled></snapshots> 

 

<settings>
  <mirrors>
    <mirror>
      <!--This sends everything else to /public -->
      <id>nexus</id>
      <mirrorOf>*</mirrorOf>
      <url>http://THE_URL:8080/nexus/content/groups/public</url>
    </mirror>
  </mirrors>
  <servers>
    <server>
      <id>admin</id>
      <username>user</username>
      <password>password</password>
    </server>
  </servers>
  <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>

 

参考:

http://stackoverflow.com/questions/17389085/nexus-could-not-find-artifact

猜你喜欢

转载自crabdave.iteye.com/blog/2338159