blob: 74b41a0f5d15bc936c66be80b54c47fd70346f4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
@file:Suppress("UNUSED_VARIABLE")
import org.jetbrains.dokka.gradle.DokkaTask
import org.jetbrains.dokka.Platform
plugins {
kotlin("multiplatform") version "1.7.20-RC"
id("org.jetbrains.dokka") version "1.7.10"
}
repositories {
mavenCentral()
}
group = "org.test"
version = "1.0-SNAPSHOT"
kotlin {
jvm() // Create a JVM target with the default name "jvm"
linuxX64("linux")
macosX64("macos")
js()
sourceSets {
val commonMain by getting {
dependencies {
implementation(kotlin("stdlib-common"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1")
}
}
}
}
tasks.withType<DokkaTask>().configureEach {
dokkaSourceSets {
/*
Create custom source set (not known to the Kotlin Gradle Plugin)
*/
register("customSourceSet") {
this.jdkVersion.set(9)
this.displayName.set("custom")
this.sourceRoots.from(file("src/customJdk9/kotlin"))
}
}
}
|