私のMavenプロジェクトでは、antプラグインが複数のwarファイルを生成し、それらをすべて同じ成果物に添付したいと考えています。私はこのようにbuild-helper-maven-pluginを試しました
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/*.war</file>
<type>war</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
Ant プラグインは動的であるため、各 war ファイルを個別に指定したくありません。それを行う方法はありますか?
ありがとう、