Attribute | Description | Required
|
---|---|---|
basedir | where to find the source XML file, default is the project's basedir. | No |
destdir | directory in which to store the results. | Yes, unless in and out have been specified. |
extension | desired file extension to be used for the targets. If not specified, the default is ".html". | No |
style | name of the stylesheet to use - given either relative to the project's basedir or as an absolute path DEPRECATED - can be specified as a path relative to the basedir attribute of this task as well. | Yes |
classpath | the classpath to use when looking up the XSLT processor. | No |
classpathref | the classpath to use, given as reference to a path defined elsewhere. | No |
force | Recreate target files, even if they are newer than their corresponding source files or the stylesheet. | No; default is false |
processor | name of the XSLT processor to use. Permissible values are "trax" for a TraX compliant processor (ie JAXP interface implementation such as Xalan 2 or Saxon), "xslp" for the XSL:P processor, "xalan" for the Apache XML Xalan (version 1) processor the name of an arbitrary XSLTLiaison class. Defaults to trax, followed by xalan and then xslp (in that order). The first one found in your class path is the one that is used. DEPRECATED - XSL:P and xalan are deprecated and no more supported.. | No |
includes | comma- or space-separated list of patterns of files that must be included. All files are included when omitted. | No |
includesfile | the name of a file. Each line of this file is taken to be an include pattern | No |
excludes | comma- or space-separated list of patterns of files that must be excluded. No files (except default excludes) are excluded when omitted. | No |
excludesfile | the name of a file. Each line of this file is taken to be an exclude pattern | No |
defaultexcludes | indicates whether default excludes should be used or not ("yes"/"no"). Default excludes are used when omitted. | No |
in | specifies a single XML document to be styled. Should be used with the out attribute. | No |
out | specifies the output name for the styled result from the in attribute. | No |
scanincludeddirectories | If any directories are matched by the includes/excludes patterns, try to transform all files in these directories. Default is true | No |
reloadstylesheet | Control whether the stylesheet transformer is created anew for every transform opertaion. If you set this to true, performance may suffer, but you may work around a bug in certain Xalan-J versions. Default is false. Since Ant 1.5.2. | No |