Maven Assembly プラグインを使用して Web アプリケーションを構築しています。これは、特別なプラグインから一部のデータを抽出する必要があるためです。アセンブリ記述子のフラグメントはこれを示しています。
<dependencySet>
<unpack>true</unpack>
<scope>runtime</scope>
<useProjectArtifact>false</useProjectArtifact>
<includes>
<include>org.myproject.module:*:jar</include>
</includes>
<unpackOptions>
<includes>
<include>images/**</include>
<include>install/**</include>
<include>mappings/**</include>
</includes>
</unpackOptions>
<outputDirectory>./WEB-INF/myproject-modules/${artifact.name}</outputDirectory>
</dependencySet>
groupId=org.myproject.module を持つすべてのプラグインには、この特別な処理とモジュール固有のフォルダーの抽出があります。
ここで、まったく同じアプローチで別の WAR を構築する必要がありますが、モジュールのセットは異なります。アセンブリ記述子 (src/main/assembly に格納されている)のコピーを必要とせずに、元の POM を適切に拡張し、依存関係を追加する方法はありますか?
単純に pom を拡張すると、物理的に親にあるアセンブリ記述子が欠落して失敗します。
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>