Show build.bat syntax highlighted
@echo off
SET _JAVA_HOME=C:/jdk1.4.1
SET _COMPILER=modern
:error_checking
REM IF THE AMPERSAND IS SPACED AFTER THE SET, THE SPACE WILL BE INCLUDED IN THE VARIABLE VALUE.
IF NOT DEFINED JAVA_HOME ( SET JAVA_HOME=%_JAVA_HOME%)
IF NOT EXIST "%JAVA_HOME%/bin" ( SET ERROR=1& echo ERROR: %JAVA_HOME% You either need to install java or set JAVA_HOME)
IF NOT DEFINED COMPILER ( SET COMPILER=%_COMPILER% )
IF DEFINED ERROR ( ECHO CAN'T CONTINUE UNTIL YOU FIX THE ABOVE ERRORS & goto end )
:run_command
set LIBS=.\lib
set CP=".;lib\junit.jar;%LIBS%\ant.jar;%LIBS%\optional.jar;%JAVA_HOME%\lib\tools.jar"
"%JAVA_HOME%\bin\java" -classpath %CP% org.apache.tools.ant.Main -Dbuild.compiler=%COMPILER% %*
:end
See more files for this project here
Jameleon is a data-driven automated testing tool that is easily extensible via plug-ins. Features of applications are automated in Java and tied together independently in XML, creating self-documenting automated test cases.
Project homepage:
http://sourceforge.net/projects/jameleon
Programming language(s): Java,XML
License: other
build.bat
build.sh
build.xml