我希望有一个包含两个文件的Parent Maven项目。
的src /许可证/ LICENSE.TXT SRC /许可证/ NOTICE.txt
当我构建我的主项目时,它将其作为父POM引用,我希望这些文件包含在生成的JAR中。
我知道我可以使用......
<build>
<resources>
<resource>
<targetPath>META-INF</targetPath>
<directory>src/license</directory>
<includes>
<include>NOTICE.txt</include>
<include>LICENSE.txt</include>
</includes>
</resource>
</resources>
</build>
但是这只有在文件位于主项目中时才有效,而不是在父项目中。
答案 0 :(得分:1)
我找到了解决方法。
首先,创建一个新的仓库以容纳您要复制的项目。
这个POM应该包含这个(GAV详细信息是com.jeff:base-pom-license)......
<build>
<plugins>
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>
<include>**/*.txt</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
然后在你的Base pom中添加这个......
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
<version>1.5</version>
<configuration>
<resourceBundles>
<resourceBundle>com.jeff:base-pom-license:${project.version}</resourceBundle>
</resourceBundles>
</configuration>
<executions>
<execution>
<goals>
<goal>process</goal>
</goals>
</execution>
</executions>
</plugin>
这将导致您在新maven仓库中拥有的文件被包含在扩展基础pom的所有位置。