-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.properties
195 lines (145 loc) · 7.04 KB
/
project.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# Ant and Maven properties for building the Spring framework
# Values in this file will be overriden by any values with the same name
# in the user-created build.properties file.
# $Id: project.properties,v 1.35 2004/03/23 14:22:32 jhoeller Exp $
# Spring version
spring-version=1.0
# Project name
name=spring-framework
# Compile with debug code
debug=on
# With the exception of 'dist' and 'docs/api', all artifacts produced by
# the build go somewhere underneath the target dir
target.dir=${basedir}/target
# Main source tree will be compiled into this directory tree
target.classes.dir=${target.dir}/classes
# Test tree will be compiled into this directory tree
target.testclasses.dir=${target.dir}/test-classes
# Tree where load classes are built
target.loadclasses.dir=${target.dir}/load-classes
# Live database test tree will be compiled into this directory tree
target.livetestclasses.dir=${target.dir}/livetest-classes
# Library directory within project. Where third party jars reside.
lib.dir=${basedir}/lib
# Source directory under the current root
src.dir=${basedir}/src
# Directory for generated API documentation -->
javadocs.dir=${basedir}/docs/api
# Test directory under the current root
test.dir=${basedir}/test
# Live database directory under the current root
livetest.dir=${basedir}/livetest
# Wildcards to be matched by JUnit tests
# Convention is that our JUnit test classes have names like XXXXTestSuite or XXXTests
test.includes=**/*TestSuite.class **/*Tests.class
# Wildcards to exclude among JUnit tests
test.excludes=**/Abstract*
# Directory where JUnit test reports are written
target.junit.reports.dir=${target.dir}/test-reports
# Directory where JUnit test summary is written
target.junit.summary.dir=${target.dir}/test-summary
# Where we generate instrumented (Cloverised) classes
target.clover.dir=${target.dir}/clover
clover.dbdir=${target.clover.dir}
clover.dbfile=spring_coverage.db
clover.initstring=${clover.dbdir}/${clover.dbfile}
target.clover.html.dir=docs/clover
# Global property to exclude selected classes from Clover instrumentation.
# Typically we'll use this to exclude experimental packages from coverage
# analysis, or classes that are intended to support development.
clover.excludes=
# Directory we generate distribution units such as jars and zips to
dist.dir=dist
# Directory for release Zips
target.release.dir=${target.dir}/release
# Zip file that gets created for a release
release.zip=spring-framework-${spring-version}.zip
release-with-dependencies.zip=spring-framework-${spring-version}-with-dependencies.zip
# Path prefix within the Zip file
release.path=spring-framework-${spring-version}
# Name of load test jar file
spring-load.jar=spring-load.jar
# This is only used by the ant build to kill this directory, where IDEs may
# place other class files (for samples, etc.)
target.otherclasses.dir=${target.dir}/other-classes
# Directory for Jakarta Commons Attributes to write generated Java code to
commons.attributes.tempdir.src=${target.dir}/generated-commons-attributes-src
commons.attributes.tempdir.test=${target.dir}/generated-commons-attributes-test
# Maven properties follow
# ------------------------------------------------------------------------
# project properties
# ------------------------------------------------------------------------
# ------------------------------------------------------------------------
# xdocs
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#maven.ui.banner.background = white
maven.xdoc.date=left
maven.xdoc.version=${pom.currentVersion}
# ------------------------------------------------------------------------
# docbook reference documentation
# ------------------------------------------------------------------------
doc.dir=docs
doc.ref.dir=docs/reference
dist.ref.dir=docs/reference
# ------------------------------------------------------------------------
# checkstyle
# ------------------------------------------------------------------------
maven.checkstyle.properties = ${basedir}/checkstyle.xml
# Testing
maven.junit.fork = true
maven.test.failure.ignore = true
# Changelog properties
maven.changelog.incremental = true
maven.changelog.compression = true
# ------------------------------------------------------------------------
# M A V E N J A R O V E R R I D E
# ------------------------------------------------------------------------
maven.jar.override = on
# ------------------------------------------------------------------------
# Jars set explicity by path (intended for those not at ibiblio).
# ------------------------------------------------------------------------
maven.jar.aopalliance = ${basedir}/lib/aopalliance/aopalliance.jar
maven.jar.poi = ${basedir}/lib/poi/poi-2.5.jar
maven.jar.easymock = ${basedir}/lib/easymock/easymock.jar
maven.jar.cglib = ${basedir}/lib/cglib/cglib-2.0.jar
maven.jar.cos = ${basedir}/lib/cos/cos.jar
maven.jar.freemarker = ${basedir}/lib/freemarker/freemarker.jar
maven.jar.ibatis-common = ${basedir}/lib/ibatis/ibatis-common.jar
maven.jar.ibatis-sqlmap = ${basedir}/lib/ibatis/ibatis-sqlmap.jar
maven.jar.ibatis-sqlmap-2 = ${basedir}/lib/ibatis/ibatis-sqlmap-2.jar
maven.jar.itext = ${basedir}/lib/itext/itext-1.02b.jar
maven.jar.jdo = ${basedir}/lib/jdo/jdo.jar
maven.jar.jms = ${basedir}/lib/j2ee/jms.jar
maven.jar.ejb = ${basedir}/lib/j2ee/ejb.jar
maven.jar.hibernate = ${basedir}/lib/hibernate/hibernate2.jar
maven.jar.jta = ${basedir}/lib/j2ee/jta.jar
maven.jar.jotm = ${basedir}/lib/jotm/jotm.jar
maven.jar.quartz = ${basedir}/lib/quartz/quartz.jar
maven.jar.xapool = ${basedir}/lib/jotm/xapool.jar
maven.jar.jaxrpc = ${basedir}/lib/j2ee/jaxrpc.jar
maven.jar.mail = ${basedir}/lib/j2ee/mail.jar
maven.jar.velocity-tools-generic = ${basedir}/lib/velocity/velocity-tools-generic-1.1-rc1.jar
maven.jar.activation = ${basedir}/lib/j2ee/activation.jar
maven.jar.commons-attributes-api = ${basedir}/lib/jakarta-commons/commons-attributes-api-SNAPSHOT.jar
maven.jar.commons-attributes-compiler = ${basedir}/lib/jakarta-commons/commons-attributes-compiler-SNAPSHOT.jar
maven.jar.asm = ${basedir}/lib/cglib/asm.jar
maven.jar.jboss-common-jdbc-wrapper = ${basedir}/lib/jboss/jboss-common-jdbc-wrapper.jar
# Override the clover jar to point to Spring's licensed version
maven.clover.jar = ${basedir}/lib/clover/clover.jar
#-------------------------------------------------------------------------
# Maven Cruise Control/SCM Properties
#-------------------------------------------------------------------------
maven.cruisecontrol.home = /opt/javatools/cruisecontrol
maven.cruisecontrol.mail.subjectprefix = [Build]
maven.cruisecontrol.checkout.dir = /opt/projects/checkout
maven.cruisecontrol.mail.host = smtp.btinternet.com
maven.cruisecontrol.config = /opt/projects/cruisecontrol.xml
maven.scm.method=cvs
maven.scm.cvs.rsh=ssh
maven.scm.cvs.root=:ext:luke_t@cvs.sourceforge.net:/cvsroot/springframework
maven.scm.ignore.pom.connection=true
maven.scm.cvs.module=spring
#------------------------------------------------------------------------
# Site deployment
#------------------------------------------------------------------------
maven.site.deploy.method = fs