我需要web.xml
使用 Maven 创建两个带有两个不同文件的 WAR 文件。WAR 文件在其他方面是相同的。
WAR 文件按预期创建,但是,第二个文件与第一个文件具有相同的web.xml
文件。
如何强制 Maven WAR 插件将第二个文件用于第二个 WAR?我不能使用配置文件,因为我需要一次创建两个文件。
我当前的代码:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.2</version>
<configuration>
<warSourceDirectory>${basedir}/WEB</warSourceDirectory>
<warName>main</warName>
<webXml>${basedir}/CONF/web.xml</webXml>
</configuration>
<executions>
<execution>
<id>hist-war</id>
<phase>package</phase>
<goals>
<goal>war</goal>
</goals>
<configuration>
<warName>hist</warName>
<warSourceDirectory>${basedir}/WEB</warSourceDirectory>
<webXml>${basedir}/CONF/hist.web.xml</webXml>
</configuration>
</execution>
</executions>
</plugin>