Upgrade to checkstyle 6.12.1
Project: http://git-wip-us.apache.org/repos/asf/buildr/repo Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/f11b0314 Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/f11b0314 Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/f11b0314 Branch: refs/heads/master Commit: f11b0314fa30b8b0fe07b9be6038939ee372eb51 Parents: 8b77fa2 Author: Peter Donald <[email protected]> Authored: Fri Nov 27 18:07:35 2015 +1100 Committer: Peter Donald <[email protected]> Committed: Fri Nov 27 18:07:35 2015 +1100 ---------------------------------------------------------------------- CHANGELOG | 2 +- addon/buildr/checkstyle.rb | 21 ++++++++++----------- 2 files changed, 11 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/buildr/blob/f11b0314/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index c64baa7..02dcc70 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -11,7 +11,7 @@ the bug that allowed unintended sharing has been fixed. * Fixed: Fix bug in IDEA module generation that resulted in dependencies in IDEA module using shared references to compile dependencies. -* Change: Update the checkstyle addon to use checkstyle 6.7. +* Change: Update the checkstyle addon to use checkstyle 6.12.1. 1.4.23 (2015-06-12) * Change: BUILDR-706 - Update the checkstyle addon use checkstyle 6.6. Submitted http://git-wip-us.apache.org/repos/asf/buildr/blob/f11b0314/addon/buildr/checkstyle.rb ---------------------------------------------------------------------- diff --git a/addon/buildr/checkstyle.rb b/addon/buildr/checkstyle.rb index 774ba9d..7135dbd 100644 --- a/addon/buildr/checkstyle.rb +++ b/addon/buildr/checkstyle.rb @@ -22,17 +22,16 @@ module Buildr # The specs for requirements def dependencies - [ - 'com.puppycrawl.tools:checkstyle:jar:6.7', - 'org.antlr:antlr4-runtime:jar:4.5', - 'antlr:antlr:jar:2.7.7', - 'com.google.guava:guava:jar:18.0', - 'org.apache.commons:commons-lang3:jar:3.4', - 'org.abego.treelayout:org.abego.treelayout.core:jar:1.0.1', - 'commons-cli:commons-cli:jar:1.3', - 'commons-beanutils:commons-beanutils-core:jar:1.8.3', - 'commons-logging:commons-logging:jar:1.1.1' - ] + %w( + com.puppycrawl.tools:checkstyle:jar:6.12.1 + org.antlr:antlr4-runtime:jar:4.5.1-1 + antlr:antlr:jar:2.7.7 + com.google.guava:guava:jar:18.0 org.apache.commons:commons-lang3:jar:3.4 + org.abego.treelayout:org.abego.treelayout.core:jar:1.0.1 + commons-cli:commons-cli:jar:1.3 + commons-beanutils:commons-beanutils-core:jar:1.8.3 + commons-logging:commons-logging:jar:1.1.1 + ) end def checkstyle(configuration_file, format, output_file, source_paths, options = {})
