You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by cr...@apache.org on 2014/04/22 22:12:10 UTC

git commit: SAMZA-95; remove jacoco to make projectReport work properly

Repository: incubator-samza
Updated Branches:
  refs/heads/master 47edbc3a2 -> bbb0b1235


SAMZA-95; remove jacoco to make projectReport work properly


Project: http://git-wip-us.apache.org/repos/asf/incubator-samza/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-samza/commit/bbb0b123
Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza/tree/bbb0b123
Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza/diff/bbb0b123

Branch: refs/heads/master
Commit: bbb0b123523e0e050a70ba8fea47438933a9ee46
Parents: 47edbc3
Author: Chris Riccomini <cr...@criccomi-mn.linkedin.biz>
Authored: Tue Apr 22 13:12:03 2014 -0700
Committer: Chris Riccomini <cr...@criccomi-mn.linkedin.biz>
Committed: Tue Apr 22 13:12:03 2014 -0700

----------------------------------------------------------------------
 RELEASE.md   | 4 ----
 build.gradle | 6 ------
 2 files changed, 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/bbb0b123/RELEASE.md
----------------------------------------------------------------------
diff --git a/RELEASE.md b/RELEASE.md
index 36d1beb..5a7eabc 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -10,7 +10,3 @@ To release to a local Maven repository:
 
     ./gradlew clean publishToMavenLocal
     ./gradlew -PscalaVersion=2.9.2 clean publishToMavenLocal
-
-To generate test coverage reports:
-
-    ./gradlew clean jacocoTestReport

http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/bbb0b123/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index b54cee6..f8d0709 100644
--- a/build.gradle
+++ b/build.gradle
@@ -34,14 +34,8 @@ allprojects {
 
 
 subprojects {
-  apply plugin: 'jacoco'
   apply plugin: 'eclipse'
   apply plugin: 'project-report'
-
-  // Required for now, becaues of GRADLE-2917.
-  dependencies {
-    jacocoAgent "org.jacoco:org.jacoco.agent:${jacoco.toolVersion}"
-  }
 }
 
 project(':samza-api') {