Skip to content

Commit 2787b89

Browse files
committed
KAFKA-18142 switch Kafka's Gradle build shadow plugin to com.gradleup.shadow
details: * `io.github.goooler.shadow` plugin was deprecated in favor of `com.gradleup.shadow`: https://github.com/Goooler/shadow?tab=readme-ov-file#gradle-shadow * release notes for version upgrade: https://gradleup.com/shadow/changes/#v8-3-1-2024-09-10
1 parent b4be178 commit 2787b89

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ plugins {
4141

4242
id "com.github.spotbugs" version '6.0.25' apply false
4343
id 'org.scoverage' version '8.0.3' apply false
44-
id 'io.github.goooler.shadow' version '8.1.3' apply false
44+
id 'com.gradleup.shadow' version '8.3.1' apply false
4545
id 'com.diffplug.spotless' version "6.25.0"
4646
}
4747

@@ -354,11 +354,11 @@ subprojects {
354354
if (!shouldPublishWithShadow) {
355355
from components.java
356356
} else {
357-
apply plugin: 'io.github.goooler.shadow'
357+
apply plugin: 'com.gradleup.shadow'
358358
project.shadow.component(mavenJava)
359359

360360
// Fix for avoiding inclusion of runtime dependencies marked as 'shadow' in MANIFEST Class-Path.
361-
// https://github.com/johnrengelman/shadow/issues/324
361+
// https://github.com/GradleUp/shadow/issues/324
362362
afterEvaluate {
363363
pom.withXml { xml ->
364364
if (xml.asNode().get('dependencies') == null) {
@@ -3306,7 +3306,7 @@ project(':streams:upgrade-system-tests-39') {
33063306

33073307
project(':jmh-benchmarks') {
33083308

3309-
apply plugin: 'io.github.goooler.shadow'
3309+
apply plugin: 'com.gradleup.shadow'
33103310

33113311
shadowJar {
33123312
archiveBaseName = 'kafka-jmh-benchmarks'

0 commit comments

Comments
 (0)