forked from swaldman/c3p0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.properties
111 lines (82 loc) · 2.92 KB
/
build.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# >> BASICS <<
#
# c3p0 depends on the mchange-commons-java library, with
# which it is distributed. you must set the directory
# in which that library's jar and sources-jar files can
# be found
#
mchange-commons-java.dist.dir=lib
#
# the version and jar file name against which the present distribution
# is intended to be built are shown below. usually you should leave
# these alone.
#
mchange-commons-java.version=0.2.3.1
mchange-commons-java.jar.file.name=mchange-commons-java-${mchange-commons-java.version}.jar
mchange-commons-java.jar.file=${mchange-commons-java.dist.dir}/${mchange-commons-java.jar.file.name}
mchange-commons-java.sources.jar.file=${mchange-commons-java.dist.dir}/mchange-commons-java-${mchange-commons-java.version}-sources.jar
#
# You'll need to supply at least one of j2ee.classpath
# or j2ee.jar.file.base.dir. All jar files under
# ${j2ee.jar.file.base.dir} or its subdirectories
# will be added to the effective classpath of the project.
#
#j2ee.classpath=
#j2ee.jar.base.dir=
# set these properties if you are going for jdk1.4 compatability
#no-mgmt=set
#jvm.target.version=1.4
# otherwise
jvm.target.version=1.5
# >> DEBUGGING AND TRACING <<
# Set this to true if you want logging enabled for logging levels below INFO.
# If debug is not set, logging code for these messages will be eliminated from
# the compiled code by virtue of "if (false) { ... }" blocks.
#c3p0-build.debug=
# Set trace to an integer between 0 and 10 (inclusive) to control how the level
# of detail of debug logging messages. Only makes a difference if c3p0.debug is
# set to true above. Default to 5 if unset.
#c3p0-build.trace=
# NOTE: You must still configure your logging library to log or display these
# debug level messages if you actually want to see any change!
#----------------------------------------------------------------------------
# >> OPTIONAL LIBRARY SUPPRT <<
#
# You'll only need this property if you want to
# build the jar of utilities specific to the
# oracle-thin jdbc driver / dbms
#
#oracle-thin.jdbc.jar.file=
#----------------------------------------------------------------------------
# >> OPTIONAL TEST SUPPORT
#
# this stuff is only required if you want to run
# the various tests. very optional
#
#test.jdbc.driver.jar.file=
#test.jdbc.driver=
#test.jdbc.url=
#test.jdbc.user=
#test.jdbc.password=
#
# required if you want to run junit tests
#
#junit.jar.file
# >> VERY VERY OPTIONAL DOCS-TO-WEB SUPPORT
#
# this stuff is only required if you want to deploy
# an ear file containing c3p0's docs to a J2EE appserver.
# via scp. Requires an available executable "scp".
#
# this is a convenience for c3p0's developer, not
# really intended for other users. just leave blank
#
# note that virtual.host modifies a jboss-web.xml file,
# will do nothing if you are deploying to some other
# app server
#
#docwebapp.context.root=
#docwebapp.virtual.host=
#docwebear.deploy.user=
#docwebear.deploy.host=
#docwebear.deploy.path=