aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts
diff options
context:
space:
mode:
authorsebastian.sellmair <sebastian.sellmair@jetbrains.com>2020-07-31 14:01:49 +0200
committerSebastian Sellmair <34319766+sellmair@users.noreply.github.com>2020-07-31 17:54:04 +0200
commit582db8d659877cd2c482d485e0ba19913dba3a6a (patch)
tree5ae22618194e11535f094a6712020054a398648a /integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts
parent292b3fbf0b86f8370f23c8e631e37b735393226d (diff)
downloaddokka-582db8d659877cd2c482d485e0ba19913dba3a6a.tar.gz
dokka-582db8d659877cd2c482d485e0ba19913dba3a6a.tar.bz2
dokka-582db8d659877cd2c482d485e0ba19913dba3a6a.zip
Re/de-shadow kotlin-compiler artifact
Diffstat (limited to 'integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts')
-rw-r--r--integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts9
1 files changed, 7 insertions, 2 deletions
diff --git a/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts
index 247e4c15..aded7b15 100644
--- a/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts
+++ b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts
@@ -11,7 +11,13 @@ kotlin {
jvm()
linuxX64("linux")
macosX64("macos")
- js()
+ sourceSets {
+ named("commonMain") {
+ dependencies {
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8-1.4.0-rc")
+ }
+ }
+ }
}
tasks.withType<DokkaTask> {
@@ -20,6 +26,5 @@ tasks.withType<DokkaTask> {
create("jvmMain")
create("linuxMain")
create("macosMain")
- create("jsMain")
}
}