-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.properties
52 lines (37 loc) · 1023 Bytes
/
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
#
# Jar artifact info
#
module.org = net.peierls
module.name = guice-util
module.version = 1.0
module.jar = ${build.dir}/${module.org}-${module.name}-${module.version}.jar
#
# The name of the class to run with the "run" target.
#
main.class.name = net.peierls.guiceutil.ConcurrentSingletonExample
#
# Project directory structure
#
docs.dir = ${basedir}/docs
lib.dir = ${basedir}/lib
build.dir = ${basedir}/build
classes.dir = ${build.dir}/classes
test.classes.dir = ${build.dir}/testclasses
tests.dir = ${build.dir}/tests
reports.dir = ${build.dir}/reports
src.dir = ${basedir}/src/main/java
test.src.dir = ${basedir}/src/test/java
javadoc.dir = ${docs.dir}/javadoc
#
# errorprone compiler adapter
#
errorprone.adapter = com.google.errorprone.ErrorProneAntCompilerAdapter
#
# javac arguments
#
build.debug = true
build.verbose = false
#
# javadoc arguments
#
doc.windowtitle = Guice Utilities