Last active
December 27, 2015 07:29
-
-
Save boseji/7289201 to your computer and use it in GitHub Desktop.
Ant Build Setup Scripts for windows
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
@ECHO OFF | |
@REM SET JAVA_PATH= set your JDK install path here - not the bin directory | |
@REM SET ANT_PATH= set your Ant extracted path here - not the bin directory | |
@SET JAVA_HOME=%JAVA_PATH% | |
@SET ANT_HOME=%ANT_PATH% | |
@SET PATH=%JAVA_PATH%\bin;%ANT_PATH%\bin;%PATH% | |
@CLS | |
@ECHO ANT Build Environment Setup Done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment