Skip to content

Commit 069ffb7

Browse files
committed
Update gradle shadow plugin version
Fixes java.lang.IllegalArgumentException: Unsupported class file major version 65 Gradle :core:shadowJar task throws the above exception with jackson > 2.16.0 due to FasterXML/jackson-core#1210
1 parent 5f08b1d commit 069ffb7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

buildSrc/src/main/kotlin/faker-lib-conventions.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import org.jetbrains.dokka.gradle.DokkaTask
99
plugins {
1010
`java-library`
1111
id("org.jetbrains.dokka")
12-
id("com.github.johnrengelman.shadow")
12+
id("com.gradleup.shadow")
1313
id("faker-kotlin-conventions")
1414
id("faker-pub-conventions")
1515
}

cli-bot/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
application
55
kotlin("jvm")
66
id("org.graalvm.buildtools.native") version "0.10.2"
7-
id("com.github.johnrengelman.shadow")
7+
id("com.gradleup.shadow")
88
}
99

1010
val mainFunction = "io.github.serpro69.kfaker.app.KFakerKt"

gradle/libs.versions.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rgxgen = "2.0"
1010
snakeyaml = "2.2"
1111
plugin-bcv = "0.16.3"
1212
plugin-dokka = "1.9.20"
13-
plugin-shadow = "8.1.1"
13+
plugin-shadow = "8.3.0"
1414
plugin-semantic-versioning = "0.13.0"
1515
plugin-devpublish = "0.4.1"
1616
plugin-nexus-publish = "2.0.0"
@@ -50,7 +50,7 @@ gradle-plugin-kotlin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", v
5050
gradle-plugin-bcv = { module = "org.jetbrains.kotlinx.binary-compatibility-validator:org.jetbrains.kotlinx.binary-compatibility-validator.gradle.plugin", version.ref = "plugin-bcv" }
5151
gradle-plugin-dokka = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.ref = "plugin-dokka" }
5252
gradle-plugin-semantic-versioning = { module = "io.github.serpro69:semantic-versioning", version.ref = "plugin-semantic-versioning" }
53-
gradle-plugin-shadow = { module = "com.github.johnrengelman:shadow", version.ref = "plugin-shadow" }
53+
gradle-plugin-shadow = { module = "com.gradleup.shadow:shadow-gradle-plugin", version.ref = "plugin-shadow" }
5454
snakeyaml = { module = "org.yaml:snakeyaml", version.ref = "snakeyaml" }
5555
gradle-plugin-devpublish = { module = "dev.adamko.gradle:dev-publish-plugin", version.ref = "plugin-devpublish" }
5656

0 commit comments

Comments
 (0)