在我们的一个项目中,我们使用properties-maven-plugin的read-project-properties目标来读取文件中的属性值,然后将其用于过滤资源。有关此过程的一般用途的讨论,请参阅this post。
我们希望使用开发人员特定settings.xml中定义的合适配置文件覆盖文件中找到的一些值(与覆盖POM中设置的属性的方式相同)。
然而,这不适用于properties-maven-plugin设置的属性。
我们如何实现目标?
作为一种解决方法,我们目前正在使用properties-maven-plugin注册一个额外的开发人员特定文件来实现此效果,但使用常规方式(配置文件)会更方便。
更一般地说,问题是:properties-maven-plugin的read-project-properties目标设置的属性如何与maven的属性定义优先级层次结合,这在very helpful blog post中有所描述。 / p>
我将POM的相关元素提取到一个展示我的问题的玩具项目中。这是玩具项目的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>
<groupId>xxx</groupId>
<artifactId>MavenTest</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Maven Test</name>
<description>A maven project to test filtering and the maven-properties-plugin</description>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<executions>
<!-- Read properties from a file -->
<execution>
<id>load-filter-properties</id>
<goals>
<goal>read-project-properties</goal>
</goals>
<phase>initialize</phase>
<configuration>
<files>
<file>filters/filterTest.properties</file>
</files>
<quiet>false</quiet>
</configuration>
</execution>
<!-- The following execution is for debug purposes only -->
<execution>
<id>write-project-properties</id>
<inherited>false</inherited>
<goals>
<goal>write-project-properties</goal>
</goals>
<phase>package</phase>
<configuration>
<outputFile>filters/project.properties</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12-beta-1</version>
</dependency>
</dependencies>
</project>
答案 0 :(得分:5)
我想你会找到答案here:
项目生命周期中发生的项目属性的修改对有效的pom没有影响 - 现在为时已晚。此类修改的示例包括groovy脚本(通过gmaven-plugin)和通过maven-properties-plugin从外部文件加载的属性。那么,为什么我们需要它们呢?因为它们可以在运行时由其他插件使用,所以在插件调用期间直接从属性集合中读取它们。
由于在通常的分辨率之后读取属性,它们只是覆盖在配置文件中设置的任何内容。