From 5eeb2bbeb8c71ae813808ee0e8d09293c4abe1c1 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Thu, 19 Jan 2023 04:10:57 +0100 Subject: Revise README documentation for examples and plugins (#2736) --- examples/gradle/dokka-multiplatform-example/build.gradle.kts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'examples/gradle/dokka-multiplatform-example/build.gradle.kts') 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().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") -- cgit