Skip to content

Commit

Permalink
DERBY-2739: Use DOM interfaces to implement XML operators
Browse files Browse the repository at this point in the history
Remove the jar files xalan.jar, xercesImpl.jar and serializer.jar
since they are no longer required for building Derby, and remove the
references to them in the build scripts and in the build instructions.


git-svn-id: https://svn.apache.org/repos/asf/db/derby/code/trunk@1075360 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
kahatlen committed Feb 28, 2011
1 parent e47817a commit 20d7a86
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion BUILDING.html
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ <h3><a name="Advanced Build">Advanced Build</a></h3>
on your machine. Note that Sun and IBM supply free 1.4.2 JDKs for many machines.</TD>
<TD>The list of jars in your 1.4 JDK if the build can find
them. Otherwise,
<i>${java15compile.classpath}:tools/java/xalan.jar:tools/java/serializer.jar</i>
<i>${java15compile.classpath}</i>
</TD>
</TR>

Expand Down
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@
<!--
If a 1.4 JDK is not present, then use the Java 5 environment to build the 1.4 support
-->
<property name="java14compile.classpath" value="${java15compile.classpath}:${xalan}:${serializer}"/>
<property name="java14compile.classpath" value="${java15compile.classpath}"/>

<property file="${properties.dir}/compilepath.properties"/>
<!-- Release and version info -->
Expand Down Expand Up @@ -1113,7 +1113,7 @@
access="private"
breakiterator="yes"
useexternalfile="yes"
classpath="${out.dir};${java16compile.classpath};${jars.extras};${osgi}:${xalan}:${serializer}"
classpath="${out.dir};${java16compile.classpath};${jars.extras};${osgi}"
destdir="${out.javadoc.dir}/engine"
windowtitle="Apache Derby V${major}.${minor} Internals"
doctitle="Apache Derby V${major}.${minor} Internals"
Expand Down
3 changes: 0 additions & 3 deletions tools/ant/properties/extrapath.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@ servlet24=${javatools.dir}/geronimo-spec-servlet-2.4-rc4.jar
jcc=${javatools.dir}/db2jcc.jar
jcc_l=${javatools.dir}/db2jcc_license_c.jar
osgi=${out.felix.dir}
xercesImpl=${javatools.dir}/xercesImpl.jar
xalan=${javatools.dir}/xalan.jar
xmlApis=${javatools.dir}/xml-apis.jar
serializer=${javatools.dir}/serializer.jar
javacc=${javatools.dir}/javacc.jar
junit=${javatools.dir}/junit.jar
emma=${javatools.dir}/emma.jar
Expand Down
Binary file removed tools/java/serializer.jar
Binary file not shown.
Binary file removed tools/java/xalan.jar
Binary file not shown.
Binary file removed tools/java/xercesImpl.jar
Binary file not shown.

0 comments on commit 20d7a86

Please sign in to comment.