1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
# Where the source is found
src=./src
# The root of the built files
build=./build
# Where the class files are built. Make sure this isn't where your IDE puts them!
build.classes=./build/classes
# Where dependant libraries are found
lib=./lib/
# Where to place release build files
release=./
# Where dependant libraries that don't need to be included in the test war are found
# aka servlet-api.jar
lib-ext=./lib-ext/
#Note this may not be necessary in tomcat-6 in which case this should be left blank
#lib-ext=
# Test dependencies not present in runtime
lib-test=./lib-test/
# The location of the webapp folder.
webapp=webapps/jsonrpc
# The location of the INF directory
webinf=${webapp}/WEB-INF
# Where the test java source files are
test.src=test/src
# Where the i18n files are
test.rsrc=test/rsrc
# Where to compile the test files
test.classes=${webinf}/classes
# Where Libraries should go
test.lib=${webinf}/lib
# The name of the project
app=jabsorb
# The tag / version given to this build
version=1.3
# The name of the project
app-prefix=${app}-${version}
# The name of the jar that contains the source
app-jar-name=${app-prefix}.jar
# The path to the jar that contains the source
app-jar=${build}/${app-prefix}.jar
# The name of the war that containing the test jsps that is deployed to tomcat.
app-war=${app-prefix}.war
# Location where the test war is to be installed
#installpath=/Tomcat/Tomcat4.1.31/webapps
#installpath=/var/lib/tomcat-6/webapps
#installpath=/opt/apache-tomcat-6.0.14/webapps
#The port to run the test app on, when using the run target
port-number=8084
|