Closed stefan-jung closed 6 years ago
I can confirm this behavior. The "javaLibDir" property is used only once to create a fileset with Saxon-related Java files:
<path id="saxonClasspath">
<fileset dir="${javaLibDir}">
<include name="**/saxon9*.jar"/>
<include name="**/xml-resolver*.jar"/>
<include name="**/resolver*.jar"/>
</fileset>
</path>
Setting the "javaLibDir" property to point to oXygen's \lib
directory seems to solve the problem.
<property name="javaLibDir" location="C:\path to oXygen installation directory\Oxygen XML Editor 19\lib" />
A related problem is the setting of the "saxonDir" property:
<property name="saxonDir" location="${javaLibDir}/saxon"/>
didn't work for me so as a workaround I changed the setting as follows:
<property name="saxonDir" location="${javaLibDir}" />
New target OT is 3.x, where the lib structure is different. Will correct code to reflect.
I think I've corrected this by ensuring that the lib/ dir is populated in the git repo and adding the necessary jars.
Closing this as obsolete and/or fixed. Creating a new issue to track update of OT plugins to work with 3.x
The transformation fails, because
/lib
does not exist. This is related to the following lines in thebuild.xml
: