我有一个maven多模块项目分层如下。
test-integration
- test-integration.properties
test-services
- test-services.properties
test-persistence
- test-persistence.properties
每个项目都有一个属性文件。我应该如何配置maven以从jar中排除所有* .properties,同时将它们全部提取到配置文件夹中?
答案 0 :(得分:0)
您可以添加您的聚合器/父项目(以便它将应用于所有已声明的模块)以下内容:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<excludes>
<exclude>**/test-*.properties</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/conf</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>test-*.properties</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
详情:
target
目录配置为lib(如您在问题中所述)target/conf
目录(再次,如上所述)任何以test-开头并由src/main/resources
文件夹提供的属性文件。我在一个示例项目中测试过它运行良好。
另请注意:您的IDE可能会将conf目录显示为项目的一部分(将其视为新的目录资源,它发生在我身上的Eclipse):这不是创建的新文件夹,而是显示在同一个文件夹中不同的看法。如果你真的不想产生这种副作用,那么考虑使用maven-antrun-plugin而不是Resources插件。