Browse Source

Moving from Crimson 1.1.3 to Xerces 2.0.1

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272469 13f79535-47bb-0310-9956-ffa450edef68
master
Stephane Bailliez 23 years ago
parent
commit
61fa51aff2
2 changed files with 11 additions and 3 deletions
  1. +4
    -0
      WHATSNEW
  2. +7
    -3
      build.xml

+ 4
- 0
WHATSNEW View File

@@ -4,6 +4,10 @@ Changes from Ant 1.4.1 to current CVS version
Changes that could break older environments: Changes that could break older environments:
-------------------------------------------- --------------------------------------------


* Shipped XML parser is now Xerces 2.0.1 along with the XML Parser APIs.
XML Parser APIs is a separate jar that contains the necessary
JAXP/DOM/SAX classes.

* Important: Single $ signs are no longer silently stripped! * Important: Single $ signs are no longer silently stripped!
Before you panic that we have broken all your build files, we have kept Before you panic that we have broken all your build files, we have kept
the old "$$" -> "$" behaviour. So only build files which accidentally had the old "$$" -> "$" behaviour. So only build files which accidentally had


+ 7
- 3
build.xml View File

@@ -586,7 +586,7 @@
<copy todir="${build.dir}"> <copy todir="${build.dir}">
<fileset dir="."> <fileset dir=".">
<include name="LICENSE" /> <include name="LICENSE" />
<include name="LICENSE.crimson" />
<include name="LICENSE.xerces" />
</fileset> </fileset>
<mapper type="glob" from="*" to="*.txt" /> <mapper type="glob" from="*" to="*.txt" />
</copy> </copy>
@@ -757,7 +757,7 @@
<fileset dir="."> <fileset dir=".">
<include name="README"/> <include name="README"/>
<include name="LICENSE"/> <include name="LICENSE"/>
<include name="LICENSE.crimson"/>
<include name="LICENSE.xerces"/>
<include name="TODO"/> <include name="TODO"/>
<include name="WHATSNEW"/> <include name="WHATSNEW"/>
<include name="KEYS"/> <include name="KEYS"/>
@@ -841,7 +841,7 @@
<fileset dir="."> <fileset dir=".">
<include name="README"/> <include name="README"/>
<include name="LICENSE"/> <include name="LICENSE"/>
<include name="LICENSE.crimson"/>
<include name="LICENSE.xerces"/>
<include name="TODO"/> <include name="TODO"/>
<include name="WHATSNEW"/> <include name="WHATSNEW"/>
<include name="KEYS"/> <include name="KEYS"/>
@@ -1331,4 +1331,8 @@
description="--> creates a minimum distribution in ./dist" description="--> creates a minimum distribution in ./dist"
depends="dist-lite" /> depends="dist-lite" />


<target name="javacc">
<javacc javacchome="e:\download\thirdparty\javacc2.0"
target="E:\download\thirdparty\javacc2.0\examples\MailProcessing\Digest.jj"/>
</target>
</project> </project>

Loading…
Cancel
Save