我需要從性能Maven中pom.xml文件使用maven的值pom.xml的,所以我用屬性 - Maven的插件來閱讀我的屬性文件如下讀取屬性文件到不工作
的pom.xml
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>${basedir}/src/main/resources/qura.properties</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
qura.properties文件包含了這樣的事情..
config.file.path = resources/python/config/test.py
我需要在pom.xml中
的資源要素使用config.file.path變量的pom.xml
<resources>
<resource>
<directory>${basedir}/multilang/</directory>
<includes>
<include>${config.file.path}</include>
</includes>
</resource>
<resources>
但是$ {} config.file.path值不是從qura.properties文件佔用,我無法找到JAR文件test.py。
我在做什麼錯在這段代碼?
由於提前
謝謝..但它甚至不去掉空格後爲我工作.. –