|
- <!DOCTYPE html>
- <!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
-
- https://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
- <html lang="en">
-
- <head>
- <link rel="stylesheet" type="text/css" href="stylesheets/style.css"/>
- <title>If and Unless on all tasks/nested elements</title>
- </head>
-
- <body>
- <h1 id="if_and_unless">If And Unless</h1>
-
- <p><em>Since Ant 1.9.1</em>, it is possible to add <var>if</var> and <var>unless</var> attributes on all tasks and nested elements using special namespaces.</p>
-
- <p>In order to use this feature you need to add the following namespace declarations</p>
- <pre>
- xmlns:if="ant:if"
- xmlns:unless="ant:unless"</pre>
-
- <p>The <code>if</code> and <code>unless</code> namespaces support the following 3 conditions:</p>
- <dl>
- <dt><q>true</q></dt><dd>true if the value of the attribute evaluates to true</dd>
- <dt><q>blank</q></dt><dd>true if the value of the attribute is null or empty</dd>
- <dt><q>set</q></dt><dd>true if the specified property is set</dd>
- </dl>
- <pre>
- <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></pre>
-
- </body>
- </html>
|