Skip to content

Commit

Permalink
also exclude transitive usages of the stdlib (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbonnin committed May 17, 2022
1 parent d5bdd14 commit 75de9a4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle.kts
Expand Up @@ -64,6 +64,12 @@ val createClasspathManifest = tasks.register("createClasspathManifest") {

val kotlinVersion: String by project

configurations.implementation {
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib")
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-jdk7")
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-jdk8")
}

dependencies {
implementation(gradleApi())
implementation("org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.4.2")
Expand Down

0 comments on commit 75de9a4

Please sign in to comment.