我试图检查并查看是否在maven-antrun-plugin中设置了MULE_HOME环境变量而没有成功。以下是目前为止的内容:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>mule-deploy</id>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<taskdef resource="net/sf/antcontrib/antcontrib.properties"
classpath="${settings.localRepository}/ant-contrib/ant-contrib/1.0b3/ant-contrib-1.0b3.jar"/>
<echo message="MULE_HOME is ${env.MULE_HOME}"/>
<if>
<isset property="env.MULE_HOME"/>
<then>
<echo message="MULE_HOME is set"/>
</then>
<else>
<echo message="MULE_HOME is not set"/>
</else>
</if>
</target>
</configuration>
</execution>
</executions>
</plugin>
输出为:
[echo] MULE_HOME is /<my development path>/mule
[echo] MULE_HOME is not set
检查环境变量时遗漏了什么?
Java存储环境变量与系统属性不同;System.getenv() vs. System.getProperties()。我的猜测是maven并没有将环境变量映射到系统属性中,而这正是Ant对isset所期望的。尝试在POM中创建一个属性:
<properties>
<mulehome>${env.MULE_HOME}</mulehome>
<properties>
则使用
<isset property="mulehome"/>
在taskdefline之后,定义一个:
<property environment="env"/>
我的Ant记忆有点生疏,但据我回忆,在能够使用${env之前,您需要首先定义它。FOO_BAR}变量。我希望这对你有帮助。:)