diff --git a/build.gradle b/build.gradle index 243573468f3..7ff670e5873 100644 --- a/build.gradle +++ b/build.gradle @@ -263,7 +263,7 @@ project(':core') { } task testJar(type: Jar) { - appendix = 'test' + classifier = 'test' from sourceSets.test.output } @@ -274,6 +274,9 @@ project(':core') { } } + artifacts { + archives testJar + } } project(':perf') { @@ -358,7 +361,7 @@ project(':clients') { } task testJar(type: Jar) { - appendix = 'test' + classifier = 'test' from sourceSets.test.output } diff --git a/gradle.properties b/gradle.properties index babd985a12d..15f2f7ff051 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,7 +14,7 @@ # limitations under the License. group=org.apache.kafka -version=0.8.1.1 +version=0.8.1.1-SNAPSHOT scalaVersion=2.8.0 task=build