假设我从某处获得了一个属性文件,该文件具有以下定义:
dog=POODLE
当运行maven时,我传递一个带有属性名称的参数来查找:
mvn clean install -animal=dog
我需要能够在pom.xml中检索值"POODLE"
,而不知道要查找的属性是什么(我还不知道我正在寻找“狗”,但只是我正在寻找一个“动物”)。
可以这样做吗?
我可以在pom ${animal}
中引用,它将替换为dog
,但我需要查看它。
我是无辜的尝试以下,但它不会起作用:
${${animal}}
谢谢!
答案 0 :(得分:4)
如果您使用-Danimal=${dog}
,它应该有效。这是我的例子
<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>nested-property</groupId>
<artifactId>nested-property</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<dog>POODLE</dog>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.soebes.maven.plugins</groupId>
<artifactId>maven-echo-plugin</artifactId>
<version>0.1</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>echo</goal>
</goals>
</execution>
</executions>
<configuration>
<echos>
<echo>Animal: ${animal}</echo>
</echos>
</configuration>
</plugin>
</plugins>
</build>
</project>
运行:mvn -Danimal=${dog} install
结果
[INFO] --- maven-echo-plugin:0.1:echo (default) @ nested-property ---
[INFO] Animal: POODLE
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------