diff --git a/build.gradle.kts b/build.gradle.kts index 7bc1c93..cfe6049 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -98,20 +98,6 @@ val isReleaseBuild get() = !version.toString().endsWith("SNAPSHOT") tasks.withType().configureEach { onlyIf { isReleaseBuild } - - // Workaround for https://youtrack.jetbrains.com/issue/KT-61313 - val pubName = name.removePrefix("sign").removeSuffix("Publication") - - // These tasks only exist for native targets, hence findByName() to avoid trying to find them for other targets - - // Task ':linkDebugTest' uses this output of task ':signPublication' without declaring an explicit or implicit dependency - tasks.findByName("linkDebugTest$pubName")?.let { - mustRunAfter(it) - } - // Task ':compileTestKotlin' uses this output of task ':signPublication' without declaring an explicit or implicit dependency - tasks.findByName("compileTestKotlin$pubName")?.let { - mustRunAfter(it) - } } publishing {