Skip to content
This repository has been archived by the owner on Jul 15, 2019. It is now read-only.

Commit

Permalink
Adding useful xml/xsd scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Harlow committed Apr 10, 2012
1 parent 31a9627 commit 055a880
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 0 deletions.
Binary file added tools/libs/commons-io-2.2.jar
Binary file not shown.
Binary file added tools/libs/xml-differ.jar
Binary file not shown.
Binary file added tools/libs/xmlunit-1.3.jar
Binary file not shown.
Binary file added tools/libs/xsd-validate.jar
Binary file not shown.
13 changes: 13 additions & 0 deletions tools/xml-diff.sh
@@ -0,0 +1,13 @@
#!/bin/bash

set +x

JRE=`which java`
PWD=`pwd`
LIBS=""
for d in `ls libs`;
do
LIBS="libs/$d:$LIBS";
done

$JRE -cp $LIBS XmlDiffer $*
Binary file removed tools/xsd-validate.jar
Binary file not shown.
15 changes: 15 additions & 0 deletions tools/xsd-validate.sh
@@ -0,0 +1,15 @@
#!/bin/bash

set +x

JRE=`which java`
PWD=`pwd`
LIBS=""
for d in `ls libs`;
do
LIBS="libs/$d:$LIBS";
done

$JRE -cp $LIBS XsdValidator $*


0 comments on commit 055a880

Please sign in to comment.