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:
Apoorv Mittal 2024-02-02 23:02:03 +05:30 committed by Stanislav
parent d631dca6e7
commit 2f26e30ce3
1 changed files with 4 additions and 2 deletions

View File

@ -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 {