Repository: buildr Updated Branches: refs/heads/master 42f6d655d -> 0b3d8a40f
Upgraded the Checkstyle plugin to use checkstyle 5.7 that improves Java 7 compatibility. Project: http://git-wip-us.apache.org/repos/asf/buildr/repo Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/0b3d8a40 Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/0b3d8a40 Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/0b3d8a40 Branch: refs/heads/master Commit: 0b3d8a40f382c7b4fad260ce0263bf5ce7bf0d30 Parents: 42f6d65 Author: Peter Donald <[email protected]> Authored: Fri Mar 28 17:46:10 2014 +1100 Committer: Peter Donald <[email protected]> Committed: Fri Mar 28 17:46:10 2014 +1100 ---------------------------------------------------------------------- CHANGELOG | 2 ++ addon/buildr/checkstyle.rb | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/buildr/blob/0b3d8a40/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index 091ac31..3e5fae5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,6 @@ 1.4.16 (Pending) +* Change: Upgraded the Checkstyle plugin to use checkstyle 5.7 that + improves Java 7 compatibility. * Added: Add support for configuration of the schema-pattern, table-pattern and default-schemas settings in idea's data source definitions. http://git-wip-us.apache.org/repos/asf/buildr/blob/0b3d8a40/addon/buildr/checkstyle.rb ---------------------------------------------------------------------- diff --git a/addon/buildr/checkstyle.rb b/addon/buildr/checkstyle.rb index 5b688a7..58b9aa8 100644 --- a/addon/buildr/checkstyle.rb +++ b/addon/buildr/checkstyle.rb @@ -23,9 +23,11 @@ module Buildr # The specs for requirements def dependencies [ - 'com.puppycrawl.tools:checkstyle:jar:5.5', + 'com.puppycrawl.tools:checkstyle:jar:5.7', 'commons-cli:commons-cli:jar:1.2', 'antlr:antlr:jar:2.7.7', + 'com.google.guava:guava-jdk5:jar:16.0', + 'com.google.guava:guava-bootstrap-jdk5:jar:16.0', 'com.google.collections:google-collections:jar:1.0', 'commons-beanutils:commons-beanutils-core:jar:1.8.3', 'commons-logging:commons-logging:jar:1.1.1'
