Skip to content

Commit

Permalink
Upgrade xerces and xalan to see if that fixes the StackOverflowErrors.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbjones committed Aug 5, 2019
1 parent 051ff53 commit db12570
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ cache:

before_install:
- sudo apt-get update
- sudo apt-get install -y xmlstarlet
- if [ -d "${ANT}" ]; then echo "${ANT} already downloaded..."; ls -l ${ANT}; fi
- if [ -d "apache-ant-1.10.6" ]; then echo "Downloading ${ANT}..."; wget https://www.apache.org/dist/ant/binaries/${ANT}-bin.tar.gz; tar -xzvf ${ANT}-bin.tar.gz; fi
- export PATH=`pwd`/${ANT}/bin:$PATH
- sudo apt-get install -y xmlstarlet ant ant-optional
#- if [ -d "${ANT}" ]; then echo "${ANT} already downloaded..."; ls -l ${ANT}; fi
#- if [ -d "apache-ant-1.10.6" ]; then echo "Downloading ${ANT}..."; wget https://www.apache.org/dist/ant/binaries/${ANT}-bin.tar.gz; tar -xzvf ${ANT}-bin.tar.gz; fi
#- export PATH=`pwd`/${ANT}/bin:$PATH

install:
- ant -diagnostics
- free -m

script:
- xmlstarlet val -e -s xsd/eml.xsd src/test/resources/eml-sample.xml
- ANT_OPTS="-Xss100m" ant test
- ant test
16 changes: 7 additions & 9 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -136,23 +136,21 @@
<property name="style.dir" value="./style"/>
<property name="config.file" value="${src.resources.dir}/config.xml"/>

<property name="xmlp"
value="lib/xercesImpl.jar"/>
<property name="serializer"
value="lib/serializer.jar"/>
<property name="xalan"
value="lib/xalan.jar"/>
<property name="xml-apis"
value="lib/xml-apis-xerces-2.9.1.jar"/>
<property name="xmlp" value="lib/xercesImpl-2.12.0.jar"/>
<property name="xml-apis" value="lib/xml-apis-1.4.01.jar"/>

<property name="serializer" value="lib/serializer-2.7.2.jar"/>
<property name="xalan" value="lib/xalan-2.7.2.jar"/>

<property name="itext" value="lib/iText-2.0.8.jar"/>
<property name="renderer" value="lib/core-renderer.jar"/>
<property name="renderer-min" value="lib/core-renderer-minimal.jar"/>
<property name="jtidy" value="lib/jtidy-r938.jar"/>
<property name="io" value="lib/commons-io-2.0.jar"/>

<property name="jdom" value="lib/jdom.jar"/>
<property name="cos" value="lib/cos.jar"/>
<property name="servlet" value="lib/apache/servlet.jar"/>

<property name="junit" value="lib/junit.jar"/>
<property name="utilities" value="lib/utilities.jar"/>

Expand Down
Binary file removed lib/apache/xalan.jar
Binary file not shown.
Binary file removed lib/apache/xercesImpl.jar
Binary file not shown.
Binary file removed lib/apache/xml-apis.jar
Binary file not shown.
Binary file removed lib/apache/xmlParserAPIs.jar
Binary file not shown.
Binary file added lib/serializer-2.7.2.jar
Binary file not shown.
Binary file removed lib/serializer.jar
Binary file not shown.
Binary file added lib/xalan-2.7.2.jar
Binary file not shown.
Binary file removed lib/xalan.jar
Binary file not shown.
Binary file added lib/xercesImpl-2.12.0.jar
Binary file not shown.
Binary file removed lib/xercesImpl.jar
Binary file not shown.
Binary file not shown.

0 comments on commit db12570

Please sign in to comment.