Skip to content

Commit

Permalink
chore: adjust shadow plugin coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-dedication committed Dec 14, 2024
1 parent 2ffa7c3 commit 14cde64
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ pluginManagement {
}
}
plugins {
id("com.github.johnrengelman.shadow") version "8.1.1"
id("com.gradleup.shadow") version "8.3.0"
id("com.gradle.develocity") version "3.18.2"
id("com.gradle.plugin-publish") version "1.1.0"
}
}

plugins {
id("com.gradle.develocity")
id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
id("org.gradle.toolchains.foojay-resolver-convention") version ("0.8.0")
}

// Yes, this is also in pluginManagement above. This is required for normal dependencies.
Expand Down
2 changes: 1 addition & 1 deletion shadowed/antlr/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
plugins {
`java-library`
antlr
id("com.github.johnrengelman.shadow")
id("com.gradleup.shadow")
groovy
id("convention")
// This project doesn't need Kotlin, but it is now applied thanks to `convention`. problem?
Expand Down
2 changes: 1 addition & 1 deletion shadowed/asm-relocated/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0
plugins {
`java-library`
id("com.github.johnrengelman.shadow")
id("com.gradleup.shadow")
id("convention")
// This project doesn't need Kotlin, but it is now applied thanks to `convention`. problem?
}
Expand Down
2 changes: 1 addition & 1 deletion shadowed/kotlin-editor-relocated/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("convention")
id("com.github.johnrengelman.shadow")
id("com.gradleup.shadow")
}

version = "${libs.versions.kotlineditor.core.get()}.1-SNAPSHOT"
Expand Down
2 changes: 1 addition & 1 deletion testkit/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pluginManagement {
}
plugins {
id("com.autonomousapps.testkit") version "0.8"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("com.gradleup.shadow") version "8.3.0"
id("com.gradle.develocity") version "3.18.2"
id("com.gradle.plugin-publish") version "1.1.0"
id("org.jetbrains.dokka") version "1.9.20"
Expand Down

0 comments on commit 14cde64

Please sign in to comment.