-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.properties.example
80 lines (69 loc) · 3.2 KB
/
build.properties.example
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
compile.build.debug = yes
compile.build.optimize = no
compile.build.deprecation = yes
# Uncomment to generate warnings for deprecated files.
#compile.warn.deprecation = yes
ant.build.javac.source=1.6
ant.build.javac.target=1.6
# Whether the Unit Test should be run in their own JVM.
junit.fork=true
# Controls how the JVM is forked. Valid options are 'perTest', 'perBatch', and 'once'
junit.forkmode=once
# ========================================================================================
# Application directory structure. These properties define the where the build manager
# will find source files and put generated data. In general, the default options are
# are adequate, but these can be configured if needed.
#
# TODO add some better documentation here
# ========================================================================================
basedir = .
src.dir = ${basedir}/src
web.dir = ${basedir}/WebContent
# classfile.dir = ${build.dir}/classes
classfile.dir = ${web.dir}/WEB-INF/classes
lib.dir = ${web.dir}/WEB-INF/lib
# lib.dir = ${basedir}/lib
build.dir = ${basedir}/build
javadoc.dir = ${basedir}/doc
dist.dir = ${basedir}/dist
meta.dir = ${web.dir}/META-INF
buildtools.dir = ../build-tools
# ========================================================================================
# Web application properties. Uncomment and edit these to add support for building a
# web application.
#
# app.name Base name of this application, used to construct filenames and
# directories. Defaults to "myapp".
#
# app.path Context path to which this application should be deployed (defaults to
# "/" plus the value of the "app.name" property).
#
# app.version Version number of this iteration of the application.
#
# catalina.home The directory in which you have installed a binary distribution of
# Tomcat 5. This will be used by the "deploy" target.
#
# manager.url The URL of the "/manager" web application on the Tomcat installation
# to which we will deploy web applications and web services.
#
# manager.username The login username of a user that is assigned the "manager" role (so
# that he or she can execute commands via the "/manager" web application)
#
# manager.password The login password of a user that is assigned the "manager" role (so
# that he or she can execute commands via the "/manager" web application)
# ========================================================================================
#app.name = myapp
#app.path = /myapp
#app.version=0.1-dev
#catalina.home = ../../../..
#manager.url = http://localhost:8080/manager
#manager.username = admin
#manager.password= admin
# ========================================================================================
# Database configuration parameters, for use with dbutils.xml
# ========================================================================================
# HSQLDB configuration information
hsqldb.datafile=./data/db/nttext
hsqldb.servername=nttext
hsqldb.username=sa
hsqldb.password=