How to execute XSLT 2.0 with ant ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T05:11:26Z http://stackoverflow.com/feeds/question/919692 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/919692/how-to-execute-xslt-2-0-with-ant 0 How to execute XSLT 2.0 with ant ? paulgreg 2009-05-28T07:53:03Z 2009-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>&lt;xslt style="stylesheet.xslt" basedir="core/" extension=".xml" destdir="core/" classpath="D:\\DevTools\\saxon\\bin\\saxon9.jar"&gt; &lt;/xslt&gt; </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#919893 1 Answer by samjudson for How to execute XSLT 2.0 with ant ? samjudson 2009-05-28T09:02:53Z 2009-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#932076 2 Answer by jelovirt for How to execute XSLT 2.0 with ant ? jelovirt 2009-05-31T13:53:37Z 2009-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>&lt;factory name="net.sf.saxon.TransformerFactoryImpl"/&gt;</code> inside the <code>xslt</code> element</li> </ul> http://stackoverflow.com/questions/919692/how-to-execute-xslt-2-0-with-ant/1352815#1352815 0 Answer by Mads Hansen for How to execute XSLT 2.0 with ant ? Mads Hansen 2009-08-30T01:34:53Z 2009-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> &lt;taskdef name="saxon-xslt" classname="net.sf.saxon.ant.AntTransform" classpath="${basedir}/lib/saxon/saxon9.jar;${basedir}/lib/saxon/saxon9-ant.jar"/&gt; &lt;saxon-xslt in="${source.xml}" out="${out.dir}/${output.xml}" style="${basedir}/${stylesheet.xsl}" force="true"&gt; &lt;/saxon-xslt&gt; </code></pre>