2

maven-deploy-pluginを使用してリリースとスナップショットをNexusリポジトリにアップロードしようとしています。しかし、私はこのエラーに遭遇しました

[INFO] [deploy:deploy {execution: default-deploy}]
[INFO] Retrieving previous build number from nexus
Uploading: http://localhost:8081/nexus/content/repositories/snapshots/info/afilias/edr/edr-app/1.0.4-SNAPSHOT/edr-app-1.0.4-20120605.140242-20.jar
56K uploaded  (edr-app-1.0.4-20120605.140242-20.jar)
[INFO] Uploading project information for edr-app 1.0.4-20120605.140242-20
[INFO] Retrieving previous metadata from nexus
[INFO] Uploading repository metadata for: 'artifact info.afilias.edr:edr-app'
[INFO] Retrieving previous metadata from nexus
[INFO] Uploading repository metadata for: 'snapshot info.afilias.edr:edr-app:1.0.4-SNAPSHOT'
[INFO] Retrieving previous build number from nexus
Uploading: http://localhost:8081/nexus/content/repositories/snapshots/info/afilias/edr/edr-app/1.0.4-SNAPSHOT/edr-app-1.0.4-20120605.140242-20.tar.gz
4286K uploaded  (edr-app-1.0.4-20120605.140242-20.tar.gz)
[INFO] [deploy:deploy-file {execution: default}]
Uploading: http://localhost:8081/nexus/content/repositories/releases/info/afilias/edr/edr-app/1.0.4/edr-app-1.0.4.tar.gz
89530K uploaded  (edr-app-1.0.4.tar.gz)
[INFO] Uploading project information for edr-app 1.0.4
[INFO] Retrieving previous metadata from remote-repository
[INFO] Uploading repository metadata for: 'artifact info.afilias.edr:edr-app'
[INFO] Retrieving previous build number from remote-repository
[INFO] repository metadata for: 'snapshot info.afilias.edr:edr-app:1.0.4-SNAPSHOT' could not be found on repository: remote-repository, so will be created
Uploading: http://localhost:8081/nexus/content/repositories/releases/info/afilias/edr/edr-app/1.0.4-SNAPSHOT/edr-app-1.0.4-20120605.140242-20.tar.gz
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Error deploying attached artifact /home/mren/trunk2/target/edr-app-1.0.4-SNAPSHOT.tar.gz: Error deploying artifact: Failed to transfer file: http://localhost:8081/nexus/content/repositories/releases/info/afilias/edr/edr-app/1.0.4-SNAPSHOT/edr-app-1.0.4-20120605.140242-20.tar.gz. Return code is: 400

これがpom.xmlの私の設定です:

<project>
 ...
    <distributionManagement>
       <repository>
          <id>releases</id>
          <name>Releases</name>
          <url>http://localhost:8081/nexus/content/repositories/releases</url>
        </repository>
        <snapshotRepository>
          <id>snapshots</id>
          <name>Snapshots</name>
          <url>http://localhost:8081/nexus/content/repositories/snapshots</url>
        </snapshotRepository>
      </distributionManagement>
  ...
  <build>
   ...
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-deploy-plugin</artifactId>
        <version>2.7</version>
        <executions>
          <execution>
            <phase>deploy</phase>
            <goals>
              <goal>deploy-file</goal>
            </goals>
            <configuration>
              <file>target/edr-install-1.0.4-${revision}.tar.gz</file>
              <url>${project.distributionManagement.repository.url}</url>
              <packaging>tar.gz</packaging>
              <artifactId>artifactId</artifactId>
              <groupId>groupId</groupId>
              <version>1.0.4-${revision}</version>
            </configuration>
          </execution>
        </executions>
      </plugin>
   ...
  </build>
...
</project>

そして私のsettings.xmlファイルから:

<settings>
  <server>
      <id>releases</id>
      <username>admin</username>
      <password>admin123</password>
    </server>
    <server>
      <id>snapshots</id>
      <username>admin</username>
      <password>admin123</password>
    </server>
  </servers>
  <profiles>
    <profile>
      <id>nexus</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <repositories>
        <repository>
          <id>releases</id>
          <name>Releases</name>
          <url>http://localhost:8081/nexus/content/repositories/releases</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
        <repository>
          <id>snapshots</id>
          <name>Snapshots</name>
          <url>http://localhost:8081/nexus/content/repositories/snapshots</url>
          <releases>
            <enabled>false</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
        </repository>
      </repositories>
      </profile>
  </profiles>
</settings>

この構成はある時点で機能したと確信していますが、現在はエラーが発生しています。何が悪いのかわからない。

そして、ネクサスログはスナップショットをリリースリポジトリにアップロードしようとしていることを教えてくれます

jvm 1    | 2012-06-04 14:16:31 INFO  [tp1706427008-35] - org.sonatype.nexus.proxy.maven.maven2.M2Repository - Storing of item releases:/info/afilias/edr/edr-app/1.0.4-SNAPSHOT/edr-app-1.0.4-20120604.181534-1.tar.gz is forbidden by Maven Repository policy. Because releases is a RELEASE repository
jvm 1    | 2012-06-04 14:16:31 ERROR [tp1706427008-35] - org.sonatype.nexus.rest.ContentPlexusResource - Got exception during processing request "PUT http://localhost:8081/nexus/content/repositories/releases/info/afilias/edr/edr-app/1.0.4-SNAPSHOT/edr-app-1.0.4-20120604.181534-1.tar.gz": Storing of item releases:/info/afilias/edr/edr-app/1.0.4-SNAPSHOT/edr-app-1.0.4-20120604.181534-1.tar.gz is forbidden by Maven Repository policy. Because releases is a RELEASE repository
4

2 に答える 2

3

settings.xmlが正しくありません。本の章に従って、Nexusを正しく使用するようにMavenを構成してください。具体的には、リポジトリとpluginRepositoryの特定のURLではなく、ミラー設定とそこにあるURLを使用します。

正しいMavenpomに干渉し、スナップショットをリリースリポジトリにデプロイしようとすることになりますが、これは正しくありません。

さらに、正しい目標/コマンドを使用することが重要になります。deploy-fileゴールを直接使用しないでください。

コマンドを実行するだけです

mvn clean deploy

ビルドで。

そして別の説明。Mavenは、バージョンから決定されたものをすべてデプロイします。-SNASPHOTで終わる場合は開発バージョンであり、スナップショットリポジトリに公開され(バージョン番号をインクリメントして再デプロイできるようになります)、そうでない場合はリリースと見なされ、リリースリポジトリにデプロイされます。プロジェクトをスナップショットとリリースにすることはできません。どちらかです。

リリースとスナップショットの2つの概念を混在させないでください。

また、追加のアーティファクトをデプロイするという点では、アーティファクトが関連付けられていない場合、またはビルドヘルパープラグインのアーティファクトのアタッチの目標を調べている場合は、それらを別のプロジェクト/モジュールにプルします。

于 2012-06-04T19:17:25.780 に答える
2

これは、スナップショットのように見えるファイルをデプロイするようにMavenに指示しているためです。deploy:deploy-file構成を確認してください。$ {revision}はスナップショットと同じ形式であるため、Nexusは次のように処理します。

target / edr-install-1.0.4-$ {revision} .tar.gzは次のようになります:info / afilias / edr / edr-app / 1.0.4-SNAPSHOT/edr-app-1.0.4-20120605.140242-20.tar。 gz

参考までに、MavenとNexusがスナップショットの有無を決定するために使用する正規表現については、http: //www.sonatype.com/people/2008/05/maven-code-how-to-detect-if-で説明しています。 you-have-a-snapshot-version /

もう1つお勧めするのは、deploy:deploy-fileを使用せず、代わりにbuildhelper:attachを使用してこのtar.gzをアタッチすると、ファイルに適切な名前が付けられ、リビジョンで行ったすべてのハッキングを回避できます。

于 2012-06-05T17:56:39.277 に答える