0

我在使用 Nexus 和 Maven 时遇到了一些麻烦。当我尝试使用 Nexus 使用 Maven 构建项目时,Maven 无法找到任何工件。我将此添加到 Maven 设置中:

     <mirror>
       <id>nexus</id>
       <url>http://localhost:6060/nexus/content/groups/public</url>
       <mirrorOf>central</mirrorOf>
     </mirror>

将 Maven 与 Nexus 连接起来。Maven 中央存储库也在 Nexus 设置中定义

4

2 回答 2

1

你可以这样尝试:

<mirror>
    <id>nexus-local</id>
    <url>http://localhost:6060/nexus/content/groups/public/</url>
    <mirrorOf>external:*</mirrorOf>
</mirror>
于 2013-04-22T08:46:24.840 回答
1

根据Nexus的文档,您应该配置 settings.xml 文件,如下所示:

最重要的是mirrorOf只包含一个星号来将所有请求重定向到配置的 Nexus 实例。

<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>
于 2013-04-22T09:06:47.320 回答