How to execute XSLT 2.0 with ant ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T05:11:26Zhttp://stackoverflow.com/feeds/question/919692http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/919692/how-to-execute-xslt-2-0-with-ant0How to execute XSLT 2.0 with ant ?paulgreg2009-05-28T07:53:03Z2009-08-30T01:34:53Z
<p>I'm trying to run an XSLT transformation from an <a href="http://ant.apache.org/" rel="nofollow">ant</a> file.</p>
<p>I'm using a XSLT 2.0 stylesheet with a <a href="http://saxon.sourceforge.net/" rel="nofollow">saxon 9</a> parser (supporting XSLT 2.0).</p>
<p>The problem is that it seems that ant is always calling an XSLT 1.0 parser.</p>
<p>Here's my ant file :</p>
<pre><code><xslt style="stylesheet.xslt"
basedir="core/"
extension=".xml"
destdir="core/"
classpath="D:\\DevTools\\saxon\\bin\\saxon9.jar">
</xslt>
</code></pre>
<p>If I call it directly (without ant), it's working.</p>
<p>Any idea ?</p>
http://stackoverflow.com/questions/919692/how-to-execute-xslt-2-0-with-ant/919893#9198931Answer by samjudson for How to execute XSLT 2.0 with ant ?samjudson2009-05-28T09:02:53Z2009-05-28T09:51:12Z<p>This tutorial seems to give step by step instructions on how to do what you are asking:</p>
<p><a href="http://www.abbeyworkshop.com/howto/xslt/ant-saxon/index.html" rel="nofollow">http://www.abbeyworkshop.com/howto/xslt/ant-saxon/index.html</a></p>
<p>From that it appears you are doing the correct thing. Are you sure you need the double back slashes?</p>
<p>Update: The xslt ant documentation mentions the 'factory' property which may help you get closer:</p>
<p><a href="http://ant.apache.org/manual/CoreTasks/style.html" rel="nofollow">http://ant.apache.org/manual/CoreTasks/style.html</a></p>
http://stackoverflow.com/questions/919692/how-to-execute-xslt-2-0-with-ant/932076#9320762Answer by jelovirt for How to execute XSLT 2.0 with ant ?jelovirt2009-05-31T13:53:37Z2009-05-31T13:53:37Z<p>The problem is that while Saxon is added to the classpath, the default JAXP mechanism to determine which TransformerFactory is used and it will use the default that is Xalan. You either need to:</p>
<ul>
<li>Set <code>javax.xml.transform.TransformerFactory</code> system variable to <code>net.sf.saxon.TransformerFactoryImpl</code>,</li>
<li>Add saxon9.jar to the <code>CLASSPATH</code> system variable, or</li>
<li>Use <code><factory name="net.sf.saxon.TransformerFactoryImpl"/></code> inside the <code>xslt</code> element</li>
</ul>
http://stackoverflow.com/questions/919692/how-to-execute-xslt-2-0-with-ant/1352815#13528150Answer by Mads Hansen for How to execute XSLT 2.0 with ant ?Mads Hansen2009-08-30T01:34:53Z2009-08-30T01:34:53Z<p>Create a taskdef from the Saxon <a href="http://www.saxonica.com/documentation/javadoc/net/sf/saxon/ant/AntTransform.html" rel="nofollow">AntTransform class</a>:</p>
<pre><code> <taskdef name="saxon-xslt" classname="net.sf.saxon.ant.AntTransform" classpath="${basedir}/lib/saxon/saxon9.jar;${basedir}/lib/saxon/saxon9-ant.jar"/>
<saxon-xslt
in="${source.xml}"
out="${out.dir}/${output.xml}"
style="${basedir}/${stylesheet.xsl}"
force="true">
</saxon-xslt>
</code></pre>