Last active
December 27, 2015 07:29
-
-
Save boseji/7289260 to your computer and use it in GitHub Desktop.
ANT Build Scripts for Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set +v | |
#export JAVA_PATH= set your JDK install path here - not the bin directory | |
#export ANT_PATH= set your Ant extracted path here - not the bin directory | |
export JAVA_HOME=$JAVA_PATH | |
export ANT_HOME=$ANT_PATH | |
export PATH=$JAVA_PATH/bin:$ANT_PATH/bin:$PATH | |
clear | |
echo ANT Build Environment Setup Done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment