forked from hrs-allbsd/OpenLanguageTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.properties
50 lines (36 loc) · 1.42 KB
/
common.properties
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
#this file contains declarations of variables used for the whole project
#and fallback values for cases some config files (e.g. build.local.properties
#are missing
# java compiler options
# do not run compilation in a new process -
# needed to compile some of the segmenters in filter module
# you still need to do an "export ANT_OPTS=-Xss8m" before running ant
compiler.fork=false
#debugging
compiler.debug=true
#verbose output
compiler.verbose=false
#set target platform
platform.version=1.5
#fallback value when build.local.properties is missing
build.dir=build
#support for transparent directories; see TestSupport class
test-sys-prop.junit.output.dir=${build.dir}/test-results
# build-tools definitions
buildtools.basedir=${common.basedir}/external/build
javacchome=${buildtools.basedir}/javacc
izpack.home=${buildtools.basedir}/izpack
junit.home=${buildtools.basedir}/junit
#destination directory for deliverables
dest.dir=${common.basedir}/build
#the base directory for all jars
extlib.dir=${common.basedir}/external/lib/
#testing properties
#port number on which to listen to debugger
test.debug.port=58000
#whether or not to suspend execution (thus waiting for debugger to connect)
#Setting this property to 'y' will block execution until a debugger is connected
#If you want to connect with debugger to running test BEFORE execution, add to your
#build.local.properties file this line:
#test.debug.suspend=y
test.debug.suspend=n