From: Jakub Skoczen Date: Fri, 14 Mar 2014 18:03:07 +0000 (+0100) Subject: Re-add fixed binaries X-Git-Tag: v1.12~13 X-Git-Url: http://git.indexdata.com/?p=cql-java-moved-to-github.git;a=commitdiff_plain;h=e8fe6bf38f213b30a2849b02251ec5475b1c032b Re-add fixed binaries --- diff --git a/bin/CQLGenerator b/bin/CQLGenerator new file mode 100755 index 0000000..80182aa --- /dev/null +++ b/bin/CQLGenerator @@ -0,0 +1,7 @@ +#!/bin/sh + +# Trivial script to invoke the CQLGenerator test-harness +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +JAR=$DIR/../target/cql-java.jar + +java -cp $JAR org.z3950.zing.cql.CQLGenerator ${@+"$@"} diff --git a/bin/CQLLexer b/bin/CQLLexer new file mode 100755 index 0000000..8310fb7 --- /dev/null +++ b/bin/CQLLexer @@ -0,0 +1,7 @@ +#!/bin/sh + +# Trivial script to invoke the CQLLexer test-harness +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +JAR=$DIR/../target/cql-java.jar + +java -cp $JAR org.z3950.zing.cql.CQLLexer ${@+"$@"} diff --git a/bin/CQLParser b/bin/CQLParser new file mode 100755 index 0000000..c5a384f --- /dev/null +++ b/bin/CQLParser @@ -0,0 +1,7 @@ +#!/bin/sh + +# Trivial script to invoke the CQLParser test-harness +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +JAR=$DIR/../target/cql-java.jar + +java -cp $JAR org.z3950.zing.cql.CQLParser ${@+"$@"}