Skip to content

Commit

Permalink
Update create_zip.sh to also build jar and javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaljurand committed Oct 3, 2013
1 parent 58ff550 commit 9face9c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tools/create_zip.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
#
# Packages the main contents of the repository as a zip-file.
# Includes the jar-file and Javadoc for the Java interface for APE.
#
# Note: For a new release you probably need to update the version number
# in 'ape-6.7'.
#
echo Compiling APE...
cd ../parser
bash compile.sh
cd ..

echo Building the Java Interface for APE...
cd java
mvn package site -DskipTests
cd ..

mv lexicon/clex_lexicon.pl lexicon/clex_lexicon.pl.tmp
mv lexicon/clex_lexicon_small.pl lexicon/clex_lexicon.pl


echo "Generating public regression test set..."
cd tests
swipl -f make_acetext_drs.pl -g main -t halt -q > ../acetext_drs.pl
Expand Down Expand Up @@ -33,6 +46,8 @@ zip -r \
java/pom.xml \
java/README.md \
java/src/ \
java/target/*.jar \
java/target/site \
lexicon/ \
logger/ \
parser/ \
Expand Down

0 comments on commit 9face9c

Please sign in to comment.