我正在读取外部属性文件,属性文件看起来像这样
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>