forked from CharlesZ-Chen/ReadChecker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor on build files. Refactor coding & naming convention based on…
… Apache Ant Style. Modify affected files adapt to this refactor: 1. travis-*.sh 2.read-check.sh 3.run-dljc.sh
- Loading branch information
1 parent
ee01df8
commit 0ee6c1f
Showing
7 changed files
with
91 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ bin/ | |
|
||
# ant output | ||
tests/build | ||
tests/deps | ||
build-deps/ | ||
tests/lib | ||
lib/ | ||
|
||
# Analysis | ||
Analysis/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
# This is a dependence configuration file using by ant | ||
# to build Read Checker (or generally a checker not inside in checker framework) | ||
# 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 | ||
# relative to Read Checker is ReadChecker/../ | ||
# 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=${basedir}/../checker-framework | ||
jsr308-langtools=${basedir}/../jsr308-langtools | ||
annotation-file-utilities=${basedir}/../annotation-tools/annotation-file-utilities | ||
|
||
checker-framework=${read-checker.basedir}/../checker-framework | ||
jsr308-langtools=${read-checker.basedir}/../jsr308-langtools | ||
|
||
# for testing java 7 | ||
# checker-framework=${basedir}/../../java7-jsr308/checker-framework | ||
# jsr308-langtools=${basedir}/../../java7-jsr308/jsr308-langtools | ||
# annotation-file-utilities=${basedir}/../../java7-jsr308/annotation-tools/annotation-file-utilities | ||
# 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=${checker-framework}/framework/tests/junit-4.12.jar | ||
hamcrest.lib=${checker-framework}/framework/tests/hamcrest-core-1.3.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters