Skip to content

Commit c10a35d

Browse files
committed
Remove shadow plugin from build
1 parent 4aa1b99 commit c10a35d

File tree

4 files changed

+0
-9
lines changed

4 files changed

+0
-9
lines changed

benchmarks/build.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import org.jetbrains.kotlin.gradle.tasks.*
44
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
55

66
plugins {
7-
id("com.github.johnrengelman.shadow")
87
id("me.champeau.jmh")
98
}
109

build.gradle.kts

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ buildscript {
2727
classpath("ru.vyarus:gradle-animalsniffer-plugin:${version("animalsniffer")}") // Android API check
2828
classpath("org.jetbrains.kotlin:atomicfu:${version("kotlin")}")
2929
classpath("org.jetbrains.kotlinx:kover-gradle-plugin:${version("kover")}")
30-
31-
// JMH plugins
32-
classpath("gradle.plugin.com.github.johnrengelman:shadow:${version("shadow")}")
3330
}
3431

3532
with(CacheRedirector) { buildscript.configureBuildScript(rootProject) }

buildSrc/src/main/kotlin/version-file-conventions.gradle.kts

-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ import org.gradle.api.tasks.bundling.*
33
configure(subprojects.filter { !unpublished.contains(it.name) && it.name !in sourceless }) {
44
val project = this
55
val jarTaskName = when {
6-
project.name == "kotlinx-coroutines-debug" -> {
7-
project.apply(plugin = "com.github.johnrengelman.shadow")
8-
"shadowJar"
9-
}
106
isMultiplatform -> "jvmJar"
117
else -> "jar"
128
}

gradle.properties

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jna_version=5.9.0
2828
# Gradle
2929
jdk_toolchain_version=11
3030
animalsniffer_version=1.7.1
31-
shadow_version=7.1.2
3231
#shadow_version=8.1.1 For Gradle 8, not compatible with Gradle 7
3332

3433
# Android versions

0 commit comments

Comments
 (0)