Skip to content

Commit c94e3ce

Browse files
authored
Update gradle plugin to support Java 24 (#8785)
* Upgrade gradle plug in * Reset vertx smoketests
1 parent 127660a commit c94e3ce

File tree

58 files changed

+59
-59
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+59
-59
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ plugins {
2222
id 'pl.allegro.tech.build.axion-release' version '1.14.4'
2323
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
2424

25-
id "com.github.johnrengelman.shadow" version "8.1.1" apply false
25+
id "com.gradleup.shadow" version "8.3.6" apply false
2626
id "me.champeau.jmh" version "0.7.0" apply false
2727
id 'org.gradle.playframework' version '0.13' apply false
2828
id 'info.solidsoft.pitest' version '1.9.11' apply false

buildSrc/call-site-instrumentation-plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
java
55
groovy
66
id("com.diffplug.spotless") version "6.13.0"
7-
id("com.github.johnrengelman.shadow") version "8.1.1"
7+
id("com.gradleup.shadow") version "8.3.6"
88
}
99

1010
java {

dd-java-agent/agent-bootstrap/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// The shadowJar of this project will be injected into the JVM's bootstrap classloader
22
plugins {
3-
id "com.github.johnrengelman.shadow"
3+
id "com.gradleup.shadow"
44
id 'me.champeau.jmh'
55
}
66

dd-java-agent/agent-ci-visibility/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ buildscript {
2323
}
2424

2525
plugins {
26-
id 'com.github.johnrengelman.shadow'
26+
id 'com.gradleup.shadow'
2727
id 'java-test-fixtures'
2828
}
2929

dd-java-agent/agent-debugger/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.github.johnrengelman.shadow"
2+
id "com.gradleup.shadow"
33
}
44

55
apply from: "$rootDir/gradle/java.gradle"

dd-java-agent/agent-iast/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import net.ltgt.gradle.errorprone.CheckSeverity
22

33
plugins {
4-
id 'com.github.johnrengelman.shadow'
4+
id 'com.gradleup.shadow'
55
id 'me.champeau.jmh'
66
id 'java-test-fixtures'
77
id 'com.google.protobuf' version '0.8.18'

dd-java-agent/agent-jmxfetch/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import static java.nio.file.StandardCopyOption.REPLACE_EXISTING
66
import static java.nio.file.StandardOpenOption.CREATE
77

88
plugins {
9-
id "com.github.johnrengelman.shadow"
9+
id "com.gradleup.shadow"
1010
}
1111
apply from: "$rootDir/gradle/java.gradle"
1212

dd-java-agent/agent-logs-intake/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'com.github.johnrengelman.shadow'
2+
id 'com.gradleup.shadow'
33
}
44

55
apply from: "$rootDir/gradle/java.gradle"

dd-java-agent/agent-otel/otel-bootstrap/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.github.johnrengelman.shadow"
2+
id "com.gradleup.shadow"
33
}
44

55
def otelApiVersion = '1.38.0'

dd-java-agent/agent-profiling/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.github.johnrengelman.shadow"
2+
id "com.gradleup.shadow"
33
}
44

55
apply from: "$rootDir/gradle/java.gradle"

0 commit comments

Comments
 (0)