我正在尝试将 XSL 2.0 版与 openJDK 13 和 apache FOP 一起使用。
尽管在样式表中编写了以下代码:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format" exclude-result-prefixes="fo">
...
<xsl:value-of select="system-property('xsl:version')"/>
...正在返回“1.0”
如何让 XSL 2.0 版在此环境中运行?