我的耳朵项目具有以下结构:
我的pom.xml像这样:
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<version>2.10</version>
<configuration>
<earSourceIncludes>META-INF/*</earSourceIncludes>
<packagingIncludes>META-INF/*,**/*.war</packagingIncludes>
<version>7</version>
<modules>
<webModule>
<groupId>com.ex</groupId>
<artifactId>one</artifactId>
</webModule>
</modules>
<generateApplicationXml>false</generateApplicationXml>
</configuration>
</plugin>
我想要在耳朵文件中包含META-INF文件夹的内容,该文件位于耳朵文件根目录中名为META-INF的类似文件夹中。
我尝试了earSourceIncludes和packagesIncludes的多种组合,但均未成功:我的ear文件具有链接的应用程序.war(很好),以及一个META-INF文件夹,该文件夹没有我需要的东西,但有一个预生成的MANIFEST .MF文件和带有pom的maven文件夹。
我想知道是否根本需要earSourceIncludes。老实说,我不知道为什么它不能仅与PackagingIncludes参数一起使用。
答案 0 :(得分:1)
您可以使用maven-resource-plugin
将META-INF文件夹的内容包含到根META-INF文件夹中。见下文。
让
项目基本目录-${project.basedir}
EAR根目录-${project.rootdir}
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.basedir}/META-INF</outputDirectory>
<resources>
<resource>
<directory>${project.rootdir}/META-INF</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>