-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathant-build.properties
65 lines (44 loc) · 1.64 KB
/
ant-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
# Ant properties for building JEval
# Title
title=JEval
# Version
version=0.9.6
# Project name
name=JEval
# File name
filename=jeval
# Copyright message
copyright=Copyright (C) 2002-2008 Robert Breidecker.
# Compile with debug code
debug=on
# Directory we generate distribution units such as jars and zips to
dist.dir=${basedir}/dist
# Directory for release Zips
release.dir=${basedir}/release
# Library directory within project. Where third party jars reside.
lib.dir=${basedir}/lib
# Source directory under the current root
src.dir=${basedir}/src/main/java
# Test directory under the current root
test.dir=${basedir}/src/test/java
# Samples directory under the current root
samples.dir=${basedir}/samples/src/main/java
# Directory for generated API documentation
javadocs.dir=${basedir}/docs
# Main source tree will be compiled into this directory tree
classes.dir=${basedir}/build/classes
# Test tree will be compiled into this directory tree
testclasses.dir=${basedir}/build/test-classes
# Samples tree will be compiled into this directory tree
samplesclasses.dir=${basedir}/build/samples-classes
# 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
junit.reports.dir=${basedir}/build/test-reports
# Zip file that gets created for a release
release.zip=${filename}-${version}.zip
# Path prefix within the Zip file
release.path=${filename}-${version}