如何读取外部属性文件Maven

时间:2019-05-27 05:31:53

标签: java maven

我正在读取外部属性文件,属性文件看起来像这样

file = C:\Users\test\Desktop\demo
version = 1234

现在,我必须使用'file' value(C:\Users\test\Desktop\demo)中的pom.xml作为输出目录来复制资源。有没有办法做到这一点

<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>

0 个答案:

没有答案