You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by jj...@apache.org on 2014/08/06 01:00:02 UTC

[05/37] git commit: KAFKA-1308 Publish jar of test utilities to Maven

KAFKA-1308 Publish jar of test utilities to Maven


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

Branch: refs/heads/transactional_messaging
Commit: b8d87d0b22cc4e87bac2e9fdfe761b23734851ff
Parents: e3dfad3
Author: Jakob Homan <jg...@gmail.com>
Authored: Wed Jul 2 15:01:06 2014 -0700
Committer: Jakob Homan <jg...@gmail.com>
Committed: Wed Jul 2 15:01:06 2014 -0700

----------------------------------------------------------------------
 build.gradle | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/b8d87d0b/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 2f4167f..a72905d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -272,7 +272,7 @@ project(':core') {
   }
 
   task testJar(type: Jar) {
-    appendix = 'test'
+    classifier = 'test'
     from sourceSets.test.output
   }
 
@@ -283,6 +283,9 @@ project(':core') {
     }
   }
 
+  artifacts {
+    archives testJar
+  }
 }
 
 project(':perf') {
@@ -372,7 +375,7 @@ project(':clients') {
   }
 
   task testJar(type: Jar) {
-    appendix = 'test'
+    classifier = 'test'
     from sourceSets.test.output
   }