forked from CharlesZ-Chen/ReadChecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.properties
19 lines (16 loc) · 1.02 KB
/
build.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# This is a dependence configuration file using by ant to build Read Checker
# (or generally a checker not inside in checker framework)
# Read Checker depends on checker framework and jsr308-langtools
# the default location of checker framework and jsr308-langtools is ReadChecker/../
# (This is the location where travis script would download and build these dependences)
# You could also configure to your own copy of these dependences
checker-framework=${read-checker.basedir}/../checker-framework
jsr308-langtools=${read-checker.basedir}/../jsr308-langtools
# for testing java 7
# checker-framework=${read-checker.basedir}/../../java7-jsr308/checker-framework
# jsr308-langtools=${read-checker.basedir}/../../java7-jsr308/jsr308-langtools
# Read Checker build & test needs below external libraries
javac.lib=${jsr308-langtools}/dist/lib/javac.jar
framework.lib=${checker-framework}/framework/dist/framework.jar
junit.lib=${read-checker.basedir}/testlib/junit-4.12.jar
hamcrest.lib=${read-checker.basedir}/testlib/hamcrest-core-1.3.jar