> The compilation fails with errors like this:
>
> package org.eclipse.wst.xml.xpath2.processor does not exist
Am I doing something wrong when I generate the jars as I described at
https://lists.apache.org/thread/o3s5bp5rj4hbwdmzf1bwklxl7mxqo1vx ?
If so, what should I do instead?
Otherwise, I'm wondering how the binary files available at
https://xerces.apache.org/mirrors.cgi#binary have been built without
this patch...
But I managed to build the jars with "build.sh jars-schema11" after
the changes described in the attached fix-build-jars-schema11.patch
file.
Could someone with write access merge them (I think in the
xml-schema-1.1-dev branch).
Also, could you please apply the changes in the attached
fix-build.sh-eol.patch file?
That way, the build.sh file will always have posix line endings (in
particular, think at the case when the distribution files are built on
a Windows machine).
Thank you!
Michele
Index: build.xml
===================================================================
--- build.xml (revision 1914109)
+++ build.xml (working copy)
@@ -1491,7 +1491,7 @@
destdir="${build.dest}"
source="${javac.source}"
target="${javac.target}"
-
classpath="${build.dir}/classes:${tools.dir}/${jar.apis}:${tools.dir}/${jar.resolver}:${tools.dir}/${jar.serializer}"
+
classpath="${build.dir}/classes:${tools.dir}/${jar.apis}:${tools.dir}/${jar.resolver}:${tools.dir}/${jar.serializer}:${tools.dir}/${jar.psychopath}"
debug="${debug}"
debuglevel="${debuglevel}"
deprecation="${deprecation}"
@@ -1549,6 +1549,12 @@
<copy file="${tools.dir}/${jar.resolver}"
tofile="${build.dir}/${jar.resolver}"/>
<!-- include the Xalan Serializer -->
<copy file="${tools.dir}/${jar.serializer}"
tofile="${build.dir}/${jar.serializer}"/>
+ <!-- include the ICU4J character normalizer -->
+ <copy file="${tools.dir}/${jar.charnormalizer}"
tofile="${build.dir}/${jar.charnormalizer}"/>
+ <!-- include the PsychoPath XPath 2.0 processor -->
+ <copy file="${tools.dir}/${jar.psychopath}"
tofile="${build.dir}/${jar.psychopath}"/>
+ <!-- include the Java Cup Runtime -->
+ <copy file="${tools.dir}/${jar.cup}" tofile="${build.dir}/${jar.cup}"/>
</target>
<!-- =================================================================== -->
Index: build.sh
===================================================================
--- build.sh (revision 1914109)
+++ build.sh (working copy)
Property changes on: build.sh
___________________________________________________________________
Modified: svn:eol-style
## -1 +1 ##
-native
\ No newline at end of property
+LF
\ No newline at end of property
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]