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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
# -------------------------------------------------------------------
# B U I L D P R O P E R T I E S
# -------------------------------------------------------------------
# Specifies default property values
# Overridden ant.properties
# Not user-editable; use ant.properties files instead
name = wrapper
Name = Wrapper
long.name = Java Service Wrapper Community ${version.root}
Version = 3.5.51
version = ${Version}
version.root = 3.5.51
year = 2022
# NOTE - The version property gets corrupted by the use of Xalan
# so Version is used instead.
app.name = testwrapper
app.caps.name = TestWrapper
app.long.name = Test Wrapper Sample Application
app.desc = Test Wrapper Sample Application Description
# Settings used to configure compile environment
build.debug = on
build.optimize = off
build.deprecation = off
build.compress = false
junit.failonerror = true
# Minimum version of Java required to build the Wrapper
javac.target.version=1.4
# Location of java to build the pre-release
javac.dir=E:\\j2sdk1.4.2_19
# location of intermediate products
build.dir = ${basedir}/build
build.classes = ${build.dir}/classes
build.headers = ${build.dir}/headers
build.testclasses = ${build.dir}/testclasses
build.tests = ${build.dir}/tests
dist.dir = ${basedir}/dist
signtool.dir=C:\\Program Files (x86)\\Windows Kits\\8.1\\bin\\x64
cert.dir=
# Set the properties for existing directories
bin.dir = ${basedir}/bin
conf.dir = ${basedir}/conf
src.dir = ${basedir}/src
lib.dir = ${basedir}/lib
logs.dir = ${basedir}/logs
doc.dir = ${basedir}/doc
jdoc.dir = ${basedir}/jdoc
test.dir = ${basedir}/test
context.dir = ${src.dir}/documentation
tools.dir = ${basedir}/tools
# --------------------------------------------------
# REQUIRED LIBRARIES
# --------------------------------------------------
# List of possible locations for the visual studio setup scripts
vcvars.v8_32_1=c:\\Program Files (x86)\\Microsoft Visual Studio 9.0\\VC\\bin\\vcvars32.bat
vcvars.v8_32_2=d:\\Program Files (x86)\\Microsoft Visual Studio 9.0\\VC\\bin\\vcvars32.bat
vcvars.v8_32_3=c:\\Program Files (x86)\\Microsoft Visual Studio 8\\VC\\bin\\vcvars32.bat
vcvars.v8_32_4=d:\\Program Files (x86)\\Microsoft Visual Studio 8\\VC\\bin\\vcvars32.bat
vcvars.v8_32_5=C:\\Program Files\\Microsoft Platform SDK for Windows Server 2003 R2\\SetEnv.Cmd
vcvars.v8_32_5.arg.1=/XP32
vcvars.v8_32_5.arg.2=/RETAIL
vcvars.v8_32_6=C:\\Program Files\\Microsoft Platform SDK\\SetEnv.Cmd
vcvars.v8_32_6.arg.1=/XP32
vcvars.v8_32_6.arg.2=/RETAIL
vcvars.v8_x86_64_1=c:\\Program Files (x86)\\Microsoft Visual Studio 9.0\\VC\\bin\\vcvars64.bat
vcvars.v8_x86_64_2=c:\\Program Files\\Microsoft Visual Studio 9\\VC\\bin\\amd64\\vcvarsamd64.bat
vcvars.v8_x86_64_3=c:\\Program Files\\Microsoft Platform SDK for Windows Server 2003 R2\\SetEnv.Cmd
vcvars.v8_x86_64_3.arg.1=/XP64
vcvars.v8_x86_64_3.arg.2=/RETAIL
vcvars.v8_x86_64_4=c:\\Program Files\\Microsoft Platform SDK\\SetEnv.Cmd
vcvars.v8_x86_64_4.arg.1=/XP64
vcvars.v8_x86_64_4.arg.2=/RETAIL
vcvars.v8_ia_64_1=c:\\Program Files\\Microsoft Platform SDK\\SetEnv.Cmd
vcvars.v8_ia_64_1.arg.1=/SRV64
vcvars.v8_ia_64_1.arg.2=/RETAIL
# --------------------------------------------------
# OPTIONAL LIBRARIES
# --------------------------------------------------
|