mirror of https://github.com/apache/kafka.git
MINOR: Downgrade version of shadow jar plugin (#15308)
Reviewers: Mickael Maison <mickael.maison@gmail.com>, Andrew Schofield <aschofield@confluent.io>
This commit is contained in:
parent
d631dca6e7
commit
2f26e30ce3
|
|
@ -44,7 +44,9 @@ plugins {
|
|||
// be dropped from gradle/resources/dependencycheck-suppressions.xml
|
||||
id "com.github.spotbugs" version '5.1.3' apply false
|
||||
id 'org.scoverage' version '7.0.1' apply false
|
||||
id 'com.github.johnrengelman.shadow' version '8.1.1' apply false
|
||||
// Updating the shadow plugin version to 8.1.1 causes issue with signing and publishing the shadowed
|
||||
// artifacts - see https://github.com/johnrengelman/shadow/issues/901
|
||||
id 'com.github.johnrengelman.shadow' version '8.1.0' apply false
|
||||
id 'com.diffplug.spotless' version '6.14.0' apply false // 6.14.1 and newer require Java 11 at compile time, so we can't upgrade until AK 4.0
|
||||
}
|
||||
|
||||
|
|
@ -302,7 +304,7 @@ subprojects {
|
|||
from components.java
|
||||
} else {
|
||||
apply plugin: 'com.github.johnrengelman.shadow'
|
||||
artifact shadowJar
|
||||
project.shadow.component(mavenJava)
|
||||
}
|
||||
|
||||
afterEvaluate {
|
||||
|
|
|
|||
Loading…
Reference in New Issue