Update JaCoCo version used by the `buildr/jacoco` addon to 0.7.9
Project: http://git-wip-us.apache.org/repos/asf/buildr/repo Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/0265b87b Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/0265b87b Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/0265b87b Branch: refs/heads/master Commit: 0265b87b66f55160dd1dbfa6ece133fdb6856a4d Parents: 868f101 Author: Peter Donald <[email protected]> Authored: Sun Oct 29 18:05:36 2017 +1100 Committer: Peter Donald <[email protected]> Committed: Sun Oct 29 18:08:53 2017 +1100 ---------------------------------------------------------------------- CHANGELOG | 1 + addon/buildr/jacoco.rb | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/buildr/blob/0265b87b/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index 2278c57..5e7dcff 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,5 @@ 1.5.4 (Pending) +* Change: JaCoCo Addon: Update JaCoCo version to 0.7.9. * Fixed: BUILDR-733 - Escape classpath entries in the pathing jar manifest. Submitted by Glenn Croes. * Fixed: Ensure that the pom is attached to the jar artifact with empty classifier rather than the last artifact of a type defined. Otherwise a project that defines multiple artifacts of the same type http://git-wip-us.apache.org/repos/asf/buildr/blob/0265b87b/addon/buildr/jacoco.rb ---------------------------------------------------------------------- diff --git a/addon/buildr/jacoco.rb b/addon/buildr/jacoco.rb index 8bddf81..8ad0c6f 100644 --- a/addon/buildr/jacoco.rb +++ b/addon/buildr/jacoco.rb @@ -18,7 +18,7 @@ module Buildr # WARNING: Experimental and may change radically. module JaCoCo class << self - VERSION = '0.7.2.201409121644' + VERSION = '0.7.9' def version @version || Buildr.settings.build['jacoco'] || VERSION @@ -37,7 +37,7 @@ module Buildr "org.jacoco:org.jacoco.report:jar:#{version}", "org.jacoco:org.jacoco.core:jar:#{version}", "org.jacoco:org.jacoco.ant:jar:#{version}", - 'org.ow2.asm:asm-debug-all:jar:5.0.1' + 'org.ow2.asm:asm-debug-all:jar:5.2' ] end end
