サーバーに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タグに関してリポジトリにデプロイするときにどのように見える必要がありますか?