Dear Wiki user,
You have subscribed to a wiki page or wiki category on "Ant Wiki" for change notification.
The following page has been changed by DanMcCreary:
http://wiki.apache.org/ant/UsingAntWithXSLT2%2e0AndSaxon
------------------------------------------------------------------------------
I then add the following to a properties file:
-- content of my.properties file --
+ {{{
Saxon8HomeDir=C:/Apps/saxon8
saxon8jar=${Saxon8HomeDir}/saxon8.jar
# used to make sure Saxon gets the right XSLT 2.0 processor
processor=trax
+ }}}
-- end of my.properties file --
Here is an excerpt from my build file
+ -- contents of build.xml --
+ {{{
<!-- load the local properties file -->
<property file="my.properties"/>
@@ -29, +33 @@
processor="${processor}" >
</xslt>
</target>
+ }}}
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org
|