Browse Source

KAFKA-1308; Publish jar of test utilities to Maven. Jun Rao and Jakob Homan; reviewed by Neha Narkhede.

pull/3764/head
Jakob Homan 10 years ago
parent
commit
7847e9c703
  1. 7
      build.gradle
  2. 2
      gradle.properties

7
build.gradle

@ -263,7 +263,7 @@ project(':core') { @@ -263,7 +263,7 @@ project(':core') {
}
task testJar(type: Jar) {
appendix = 'test'
classifier = 'test'
from sourceSets.test.output
}
@ -274,6 +274,9 @@ project(':core') { @@ -274,6 +274,9 @@ project(':core') {
}
}
artifacts {
archives testJar
}
}
project(':perf') {
@ -358,7 +361,7 @@ project(':clients') { @@ -358,7 +361,7 @@ project(':clients') {
}
task testJar(type: Jar) {
appendix = 'test'
classifier = 'test'
from sourceSets.test.output
}

2
gradle.properties

@ -14,7 +14,7 @@ @@ -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

Loading…
Cancel
Save