Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ subprojects {
}

task srcJar(type: Jar) {
classifier = 'sources'
archiveClassifier = 'sources'
from "$rootDir/LICENSE"
from "$rootDir/NOTICE"
from sourceSets.main.allSource
Expand Down Expand Up @@ -460,14 +460,14 @@ subprojects {

if(!sourceSets.test.allSource.isEmpty()) {
task testJar(type: Jar) {
classifier = 'test'
archiveClassifier = 'test'
from "$rootDir/LICENSE"
from "$rootDir/NOTICE"
from sourceSets.test.output
}

task testSrcJar(type: Jar, dependsOn: testJar) {
classifier = 'test-sources'
archiveClassifier = 'test-sources'
from "$rootDir/LICENSE"
from "$rootDir/NOTICE"
from sourceSets.test.allSource
Expand All @@ -486,7 +486,7 @@ subprojects {
}

task scaladocJar(type:Jar, dependsOn: scaladoc) {
classifier = 'scaladoc'
archiveClassifier = 'scaladoc'
from "$rootDir/LICENSE"
from "$rootDir/NOTICE"
from scaladoc.destinationDir
Expand Down Expand Up @@ -936,7 +936,7 @@ project(':core') {
':connect:runtime:genSinkConnectorConfigDocs', ':connect:runtime:genSourceConnectorConfigDocs',
':streams:genStreamsConfigDocs', 'genConsumerMetricsDocs', 'genProducerMetricsDocs',
':connect:runtime:genConnectMetricsDocs'], type: Tar) {
classifier = 'site-docs'
archiveClassifier = 'site-docs'
compression = Compression.GZIP
from project.file("$rootDir/docs")
into 'site-docs'
Expand Down Expand Up @@ -1837,9 +1837,9 @@ project(':jmh-benchmarks') {
apply plugin: 'com.github.johnrengelman.shadow'

shadowJar {
baseName = 'kafka-jmh-benchmarks-all'
classifier = null
version = null
archiveBaseName = 'kafka-jmh-benchmarks-all'
archiveClassifier = null
archiveVersion = null
}

dependencies {
Expand Down Expand Up @@ -1883,7 +1883,7 @@ project(':jmh-benchmarks') {
if (System.getProperty("jmhArgs")) {
args System.getProperty("jmhArgs").split(' ')
}
args = [shadowJar.archivePath, *args]
args = [shadowJar.archiveFile.get().asFile, *args]
}
}

Expand Down