forked from kimchy/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.properties
87 lines (61 loc) · 2.49 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
# Ant and Maven properties for building the Compass
# Values in this file will be overridden by any values with the same name
# in a user-created build.properties file in the same directory.
# Compass title
compass-title=Compass
compass-name=compass
# Compass version
compass-manifest-version=2.3.0.beta1
compass-version=2.3.0-beta1
compass-jarname14=${compass-name}14-${compass-version}
compass-jarname=${compass-name}-${compass-version}
# Project name
name=compass
# Compile with debug code
debug=on
# Library directory within project. Where third party jars reside.
lib.dir=${basedir}/lib
# Source directory under the current root
main.src.dir=${basedir}/src/main/src
# Test directory under the current root
main.test.dir=${basedir}/src/main/test
# docbook reference documentation
docs.dir=${basedir}/docs
reference.dir=${docs.dir}/reference
# Directory for generated API documentation
javadoc.dir=${docs.dir}/api
# 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
# Wildcards to be matched by JUnit tests.
# Convention is that our JUnit test classes have XXXTests-style names.
test.includes=**/*Tests.class
# Wildcards to exclude among JUnit tests.
test.excludes=**/Abstract*
# JUnit settings
junit.forkmode=perBatch
# 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
target.clover.html.dir=${target.clover.dir}/html
target.clover.xml.dir=${target.clover.dir}/xml
# Directory we generate distribution units such as jars and zips to
dist.dir=${basedir}/dist
# Directory for release Zips
target.release.dir=${target.dir}/release
# Zip file that gets created for a release
release.zip=compass-${compass-version}.zip
release-with-dependencies.zip=compass-${compass-version}-with-dependencies.zip
# Path prefix within the Zip file
release.path=compass-${compass-version}
# 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
samples.dir=${basedir}/samples