24 lines
685 B
Groovy
24 lines
685 B
Groovy
apply from: "$rootDir/gradle/instrumentation.gradle"
|
|
apply from: "$rootDir/gradle/test-with-kotlin.gradle"
|
|
|
|
muzzle {
|
|
pass {
|
|
group = 'org.jetbrains.kotlinx'
|
|
module = 'kotlinx-coroutines-core'
|
|
versions = "[1.0.0,1.3.8)"
|
|
skipVersions += ['1.3.2-js-ir-01', '1.3.2-js-ir-02']
|
|
}
|
|
// 1.3.9 (and beyond?) have changed how artifact names are resolved due to multiplatform variants
|
|
pass {
|
|
group = 'org.jetbrains.kotlinx'
|
|
module = 'kotlinx-coroutines-core-jvm'
|
|
versions = "[1.3.9,)"
|
|
}
|
|
}
|
|
dependencies {
|
|
compileOnly deps.opentelemetryKotlin
|
|
|
|
testImplementation deps.opentelemetryKotlin
|
|
testImplementation deps.kotlin
|
|
testImplementation deps.coroutines
|
|
} |