通过配置maven的pom文件来实现为一个项目同时生成多个jar/war包。
这里使用一下两个配置插件:
maven-jar-plugin和maven-war-plugin,分别是用于打包jar文件和war文件。
现在以下图中包名的工程为例(com以上的路径未显示),要打出主机程序jar文件和备机程序jar文件,主机程序jar文件包含除了backup目录下的所有文件,备机程序jar文件包含所有文件:
pom中添加配置为(<build><plugins>节点下添加):
<pre>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>backup</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
<configuration>
<classifier>backup</classifier>
<includes>
<include(此处有一个'>') /</include>
</includes>
</configuration>
</execution>
<execution>
<id>host</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
<configuration>
<classifier>host</classifier>
<excludes>
<exclude>com/wzl/demo/backup/</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</pre>
网友评论