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

Nexusのドキュメントに基づいて、settings.xml ファイルを次のように構成する必要があります。

最も重要なことは、mirrorOfにアスタリスクが 1 つだけ含まれており、すべてのリクエストが構成済みの 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 に答える
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 に答える