aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-multiplatform-example/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gradle/dokka-multiplatform-example/build.gradle.kts')
-rw-r--r--examples/gradle/dokka-multiplatform-example/build.gradle.kts8
1 files changed, 3 insertions, 5 deletions
diff --git a/examples/gradle/dokka-multiplatform-example/build.gradle.kts b/examples/gradle/dokka-multiplatform-example/build.gradle.kts
index c444bba0..64b5a003 100644
--- a/examples/gradle/dokka-multiplatform-example/build.gradle.kts
+++ b/examples/gradle/dokka-multiplatform-example/build.gradle.kts
@@ -12,11 +12,11 @@ repositories {
mavenCentral()
}
-group = "org.test"
+group = "org.dokka.example"
version = "1.0-SNAPSHOT"
kotlin {
- jvm() // Create a JVM target with the default name "jvm"
+ jvm() // Creates a JVM target with the default name "jvm"
linuxX64("linux")
macosX64("macos")
js()
@@ -32,9 +32,7 @@ kotlin {
tasks.withType<DokkaTask>().configureEach {
dokkaSourceSets {
- /*
- Create custom source set (not known to the Kotlin Gradle Plugin)
- */
+ // Create a custom source set not known to the Kotlin Gradle Plugin
register("customSourceSet") {
this.jdkVersion.set(9)
this.displayName.set("custom")