1

Nexus (バージョン 2.6.2-01) で奇妙な問題が発生しています。リモート インデックスの有効化/無効化を試みましたが、まだ同じ問題が発生しています。maven-release-plugin を実行していますが、このプラグインの依存関係をダウンロードしようとすると、エラーで失敗します

nexus でアーティファクト org.codehaus.groovy:groovy-all:jar:1.7.6 が見つかりませんでした

以前に org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.2 で同じエラーが発生しました。Browse Storage を使用して手動で削除し、リリース プラグインを再度実行してダウンロードする必要がありました。アーティファクトを適切に。

nexus の中央リポジトリでリモートを参照すると、アーティファクトの完全なコンテンツが表示されますが、インデックスを参照すると、groovy-all 1.7.6 の jar が見つかりません。これは、groovy の一般的な検索を行う場合と同じです。 -すべて 1.7.6.

私の設定xmlは、Repository Management with Nexusブックで提案されているように構成されています。

<mirror>
    <id>nexus</id>
    <mirrorOf>*</mirrorOf>
    <name>Nexus Public Repository Group</name>
    <url>http://localhost:8081/nexus/content/groups/public</url>
</mirror>

 <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>

<activeProfiles>
    <activeProfile>nexus</activeProfile>
</activeProfiles>

Nexus が中央から必要なアーティファクトをダウンロードすることを期待しているので、これは本当に面倒です!

ありがとう

4

2 に答える 2

3

アーティファクトが見つからなかったという事実は、ローカル リポジトリにキャッシュされている可能性があります。groovy-all を必要とするプロジェクトのビルドを実行し、次のコマンドで更新を強制します

   mvn clean install -U

それはjarをダウンロードしてパスするはずです。

また、インデックスは、ダウンロードされるものとはまったく関係ありません。検索にのみ使用されます。

于 2013-09-25T16:44:28.920 に答える