我正在使用maven创建一个ear包,它将包含模块的war文件。当我从耳朵pom文件夹位置运行mvn clean install时,maven只是将现有的war文件复制到耳中。我想要的是创建一个新的战争文件并将其打包到耳中。所以我必须先为战争运行mvn clean install然后再为耳朵运行。 下面是耳朵的pom.xml。 pom有什么遗漏吗?
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>abc-module-ear</artifactId>
<packaging>ear</packaging>
<name>${project.artifactId}</name>
<properties>
<parent.basedir>${basedir}/../..</parent.basedir>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>abc-module</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
</dependencies>
<parent>
<groupId>com.nab.cmservices</groupId>
<artifactId>cmservices-base</artifactId>
<version>1.0.16-SNAPSHOT</version>
</parent>
<build>
<plugins>
<!-- Configuration for "abc-module.ear" -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<version>5</version>
<displayName>abc-module-ear1</displayName>
<defaultLibBundleDir>lib</defaultLibBundleDir>
<modules>
<webModule>
<groupId>${project.groupId}</groupId>
<artifactId>abc-module</artifactId>
<uri>abc-module.war</uri>
<contextRoot>/abcservices-web</contextRoot>
</webModule>
</modules>
</configuration>
</plugin>
</plugins>
</build>
</project>