如何在 Maven 中读取外部属性文件

2022-08-31 08:08:35

有没有人知道如何在Maven中读取x.properties文件。我知道有一些方法可以使用资源过滤来读取属性文件并从中设置值,但是我想要一种在我的pom中.xml如下方式:

<properties file="x.properties"> 

</properties>

对此有一些讨论:Maven外部属性


答案 1

答案 2

使用建议的Maven属性插件,我能够在用于对构建版本进行版本控制的buildNumber.properties文件中读取。

  <build>    
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>properties-maven-plugin</artifactId>
        <version>1.0-alpha-1</version>
        <executions>
          <execution>
            <phase>initialize</phase>
            <goals>
              <goal>read-project-properties</goal>
            </goals>
            <configuration>
              <files>
                <file>${basedir}/../project-parent/buildNumber.properties</file>
              </files>
            </configuration>
          </execution>
        </executions>
      </plugin>
   </plugins>

推荐