The following Jelly tag libraries are defined in this project.
jelly:ant
A tag library for using Ant tasks within Jelly.
This tag library is also available as an XML Schema
Tag Name | Description |
---|---|
ant | Tag supporting ant's Tasks as well as dynamic runtime behaviour for 'unknown' tags. |
fileScanner | A tag which creates a new FileScanner bean instance that can be used to iterate over fileSets |
setProperty | Tag which sets an attribute on the parent Ant Task if the given value is not null. This can be useful when setting parameters on Ant tasks, only if they have been specified via some well defined property, otherwise allowing the inbuilt default to be used. |
ant
Tag supporting ant's Tasks as well as dynamic runtime behaviour for 'unknown' tags.
Attribute Name | Type | Description |
---|---|---|
object | java.lang.Object | Set the object underlying this tag. |
fileScanner
A tag which creates a new FileScanner bean instance that can be used to iterate over fileSets
Attribute Name | Type | Description |
---|---|---|
var | java.lang.String | Sets the name of the variable exported by this tag |
setProperty
Tag which sets an attribute on the parent Ant Task if the given value is not null. This can be useful when setting parameters on Ant tasks, only if they have been specified via some well defined property, otherwise allowing the inbuilt default to be used.
Attribute Name | Type | Description |
---|---|---|
default | java.lang.Object | Sets the default value to be used if the specified value is empty. |
name | java.lang.String | Sets the name of the Ant task property to set. |
value | java.lang.Object | Sets the value of the Ant task property to set. |