1

サーバーにNexusをインストールし、スナップショットとリリースリポジトリを設定しました。

サブモジュールmavenプロジェクトの最上位プロジェクトのpom.xmlファイルを変更し、次の行を追加しました。

  <distributionManagement>
    <snapshotRepository>
        <id>Snapshots</id>
        <url>http://maven:8081/nexus/content/repositories/Snapshots</url>
    </snapshotRepository>
    <repository>
        <id>Releases</id>
        <url>http://maven:8081/nexus/content/repositories/Releases</url>
    </repository>
  </distributionManagement>

次の内容でsettings.xmlを.m2ディレクトリに追加しました。

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <!--
  <localRepository/>
  <interactiveMode/>
  <usePluginRegistry/>
  <offline/>
  <pluginGroups/>
  -->
  <servers>

    <server>
      <id>Snapshots</id>
      <username>user</username>
      <password>pass</password>

      <privateKey>${user.home}/.ssh/id_dsa</privateKey>
      <passphrase>some_passphrase</passphrase>

      <filePermissions>664</filePermissions>
      <directoryPermissions>775</directoryPermissions>
      <configuration></configuration>

    </server>

  </servers>
  <!--
  <mirrors/>
  <proxies/>
  <profiles/>
  <activeProfiles/>
  -->
</settings>

トッププロジェクトでEclipseからデプロイゴールを指定してMavenを実行すると、Mavenはスナップショットリポジトリのビルドと同期(アップロード)を開始します。一番上のプロジェクトがアップロードされますが、最初のサブモジュールがビルドされて同期が開始された後、次のようになります。

org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project <my sub module project>: Failed to deploy artifacts: Could not transfer artifact <group id>:<artifact id>:xml:0.0.1-20130318.160312-21 from/to Snapshots (http://maven:8081/nexus/content/repositories/Snapshots): Remotely Closed [id: 0x017ae341, /192.168.10.237:58758 :> maven/192.168.10.36:8081]

奇妙なことに、Nexusインターフェイスからリポジトリを参照すると、サブプロジェクトにxmlやjarなどがあります。問題は、エラーのためにMavenが停止し、他のすべてのサブプロジェクトがデプロイされないことです。

誰もがこれを解決する方法を知っていますか?

更新: distributionManagement-tagを使用して単一のMavenプロジェクトを作成すると、Nexusに問題なくデプロイできます。しかし、マルチMavenプロジェクトがあると、エラーが発生します。にdistributionManagementをchild-pomに追加しようとしましたが、同じエラーが発生します。

pomsは、distributionManagementタグに関してリポジトリにデプロイするときにどのように見える必要がありますか?

4

1 に答える 1

2

数時間の調査の後、私は自分の問題を発見しました。親pom.xmlに、features.xmlを親リポジトリに追加するセクションがあります。

<build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
        <plugins>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-resources-plugin</artifactId>
              <version>${maven-resources-plugin.version}</version>
              <executions>
                 <execution>
                    <id>filter</id>
                    <phase>generate-resources</phase>
                    <goals>
                      <goal>resources</goal>
                    </goals>
                 </execution>
              </executions>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>${build-helper-maven-plugin.version}</version>
                <executions>
                    <execution>
                        <id>attach-artifacts</id>
                        <phase>package</phase>
                        <goals>
                            <goal>attach-artifact</goal>
                        </goals>
                        <configuration>
                            <artifacts>
                                <artifact>
                                    <file>target/classes/features.xml</file>
                                    <type>xml</type>
                                </artifact>
                            </artifacts>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
         </plugins>
   </build>

これにより、「リモートクローズ」の問題が発生しました。

于 2013-03-19T13:22:21.017 に答える