Is it possible to perform XSLT 2.0 transformation in Eclipse without additional library (AltovaXML, Saxon)?
Answer: NO, as already stated by others.
But it is also important to specifying the use of XSLT 2.0 instead of 1.0 (otherwise I got the error "javax.xml.transform.TransformerFactoryConfigurationError: Provider com.icl.saxon.TransformerFactoryImpl not found").
Using XSLT 2.0 with saxon can e.g. be achieved by:
Now you can use saxon for XSLT 2.0 transformations in Eclipse.
Check http://code.google.com/p/cakupan/
you can find a eclipse debugger plugin for xsl 2.0
Instructions to adapt it to eclipse kepler can be found at the forum, or at http://pjoseph.net/codecorner/2014/02/xsl-2-0-debugger-for-eclipse-kepler-with-saxon-he/
Not sure if this answers your question, but if you want to test your XSL stylesheets to see if they render your XML correctly, you have your choice:
The answer is No. You need to install an XSLT 2.0 processor such as Saxon.