例如,如果存在环境变量Configuration
,我希望将属性${env:AAA}
设置为AAA
,如果没有这样的环境变量,则设置为其他常量值。< / p>
我如何在maven 2中做到这一点?
答案 0 :(得分:9)
好像你activate a profile conditionally ......
<profiles>
<profile>
<activation>
<property>
<name>environment</name>
<value>test</value>
</property>
</activation>
...
</profile>
</profiles>
当环境变量定义为值test
时,将激活配置文件,如以下命令所示:
mvn ... -Denvironment=test
答案 1 :(得分:6)
如果系统属性不可接受,您只需在POM文件中定义属性并在需要时覆盖:
<project>
...
<properties>
<foo.bar>hello</foo.bar>
</properties>
...
</project>
您可以参考${foo.bar}
在POM的其他位置引用此属性。要在命令行上覆盖,只需传递一个新值:
mvn -Dfoo.bar=goodbye ...
答案 2 :(得分:4)
您可以使用maven-antrun-plugin有条件地设置属性。示例设置install.path
+回显值:
<plugin>
<!-- Workaround maven not being able to set a property conditionally based on environment variable -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<exportAntProperties>true</exportAntProperties>
<target>
<property environment="env"/>
<condition property="install.path" value="${env.INSTALL_HOME}" else="C:\default-install-home">
<isset property="env.INSTALL_HOME" />
</condition>
<echo message="${install.path}"/>
</target>
</configuration>
</execution>
</executions>
</plugin>