在我的 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>
我不想单独指定每个war文件,因为ant插件是动态的。有没有办法做到这一点?
谢谢,