我有一个用于构建的Ant XML文件。
我有3个属性。如果这些属性不包含任何值,我想打破构建。如果值为空,我还想打破构建。
我怎样才能在Ant中执行此操作?
我使用的是Ant而不是Ant-contrib。
答案 0 :(得分:59)
您可以使用<fail>
任务使用条件:
<fail message="Property "foo" needs to be set to a value">
<condition>
<or>
<equals arg1="${foo}" arg2=""/>
<not>
<isset property="foo"/>
</not>
</or>
</condition>
这相当于说 if (not set ${foo} or ${foo} = "")
是伪代码。您必须从内到外阅读XML条件。
如果您只关心变量是否已设置,您可以在<unless>
任务上使用<fail>
子句,而不是它是否具有实际值。
<fail message="Property "foo" needs to be set"
unless="foo"/>
但是,如果设置了属性但没有值,则不会失败。
有一个技巧可以使这个更简单
<!-- Won't change the value of `${foo}` if it's already defined -->
<property name="foo" value=""/>
<fail message="Property "foo" has no value">
<condition>
<equals arg1="${foo}" arg2=""/>
</condition>
</fail>
请记住,我无法重置某个属性!如果${foo}
已有值,则上面的<property>
任务将不执行任何操作。这样,我可以消除<isset>
条件。它可能很好,因为你有三个属性:
<property name="foo" value=""/>
<property name="bar" value=""/>
<property name="fubar" value=""/>
<fail message="You broke the build, you dufus">
<condition>
<or>
<equals arg1="${foo}" arg2=""/>
<equals arg1="${bar}" arg2=""/>
<equals arg1="${fubar}" arg2=""/>
</or>
</condition>
</fail>
答案 1 :(得分:12)
在其他答案的基础上,这是我的首选形式,如宏:
<!-- Macro to require a property is not blank -->
<macrodef name="prop-require">
<attribute name="prop"/>
<sequential>
<fail message="Property "@{prop}" must be set">
<condition>
<not>
<isset property="@{prop}"/>
</not>
</condition>
</fail>
<fail message="Property "@{prop}" must not be empty">
<condition>
<equals arg1="${@{prop}}" arg2=""/>
</condition>
</fail>
</sequential>
</macrodef>
用作:
<target name="deploy.war" description="Do the war deployment ;)">
<prop-require prop="target.vm" />
<prop-require prop="target.vip" />
<!-- ... -->
为简洁起见,您可以使用<or>
将两个失败元素合并为一个,但我更喜欢我的错误消息来对待我,就像我自己想不到的那样;)
答案 2 :(得分:0)
您可以尝试使用conditions ...或使用unless
创建目标答案 3 :(得分:0)
使用Ant addon Flaka,您可以使用以下模式:
<property name="foo" value="bar"/>
...
<fl:unless test="has.property.foo">
...
</fl:unless>
...
<fl:when test="has.property.foo">
...
</fl:when>
具体检查是否有空:
<fl:when test=" empty '${foo}' ">
<fail message="Houston we have a problem!!"/>
</fl:when>
一个完整的例子,也使用一些等于'eq'的检查(对面是'neq'):
<project xmlns:fl="antlib:it.haefelinger.flaka">
<!-- some if/then/else construct -->
<fl:choose>
<!-- if -->
<when test=" '${buildtype}' eq 'prod' ">
<!-- then -->
<echo>..starting ProductionBuild</echo>
</when>
<when test=" '${buildtype}' eq 'test' ">
<!-- then -->
<echo>..starting TestBuild</echo>
</when>
<!-- else -->
<otherwise>
<fl:unless test="has.property.dummybuild">
<fail message="No valid buildtype !, found => '${buildtype}'"/>
</fl:unless>
<echo>.. is DummyBuild</echo>
</otherwise>
</fl:choose>
</project>
输出ant -f build.xml -Dbuildtype = prod
或
ant -f build.xml -Dbuildtype = prod -Ddummybuild = what
[echo] ..starting ProductionBuild
使用拼写输出=&gt; ant - build.xml -Dbuildtype = testt
BUILD FAILED
/home/rosebud/workspace/AntTest/build.xml:21: No valid buildtype !, found => 'testt'
输出ant -f build.xml -Ddummybuild = what
[echo] .. is DummyBuild
答案 4 :(得分:0)
我使用的是旧版本的Ant,所以isset无法使用。相反,我使用以下符号与等于的双$。
<target name="xxx">
<echo message="${contextRoot}" />
<if>
<!-- check if the contextRoot property is defined. -->
<equals arg1="${contextRoot}" arg2="$${contextRoot}" />
<then>
<!-- it isn't set, set a default -->
<property name="contextRoot" value="/WebAppCtx" />
</then>
</if>
<echo message="${contextRoot}" />
</target>
答案 5 :(得分:0)
尝试一下。
<condition property="isPropertySet" value="true" else="false">
<and>
<isset property="my_property"/>
<length string="${my_property}" trim="true" when="greater" length="0"/>
</and>
</condition>
<fail unless="isPropertySet" message="The property my_property is not set."/>
答案 6 :(得分:0)
从 Ant 1.9.1 开始,可以在所有对象上添加 if
和 unless
属性
使用特殊命名空间的任务和嵌套元素。
为了使用此功能,您需要添加以下命名空间声明
xmlns:if="ant:if"
xmlns:unless="ant:unless"
if
和 unless
命名空间支持以下条件:
true
- 如果属性的值为真,则为真blank
- 如果属性值为 null 或为空,则为 trueset
- 如果设置了指定的属性,则为 true示例:
<project name="tryit"
xmlns:if="ant:if"
xmlns:unless="ant:unless">
<exec executable="java">
<arg line="-X" if:true="${showextendedparams}"/>
<arg line="-version" unless:true="${showextendedparams}"/>
</exec>
<condition property="onmac">
<os family="mac"/>
</condition>
<echo if:set="onmac">running on MacOS</echo>
<echo unless:set="onmac">not running on MacOS</echo>
</project>