aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-versioning-multimodule-example
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gradle/dokka-versioning-multimodule-example')
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts4
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/gradle/wrapper/gradle-wrapper.properties4
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts4
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/build.gradle.kts4
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/build.gradle.kts4
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/settings.gradle.kts6
6 files changed, 25 insertions, 1 deletions
diff --git a/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
index cb49d8b0..44b0b757 100644
--- a/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
+++ b/examples/gradle/dokka-versioning-multimodule-example/build.gradle.kts
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
+ */
+
plugins {
kotlin("jvm") version "1.9.0"
id("org.jetbrains.dokka") version "1.8.20" apply false
diff --git a/examples/gradle/dokka-versioning-multimodule-example/gradle/wrapper/gradle-wrapper.properties b/examples/gradle/dokka-versioning-multimodule-example/gradle/wrapper/gradle-wrapper.properties
index f398c33c..cc6c9292 100644
--- a/examples/gradle/dokka-versioning-multimodule-example/gradle/wrapper/gradle-wrapper.properties
+++ b/examples/gradle/dokka-versioning-multimodule-example/gradle/wrapper/gradle-wrapper.properties
@@ -1,3 +1,7 @@
+#
+# Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
+#
+
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
diff --git a/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts
index cfca99ce..2cca3274 100644
--- a/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts
+++ b/examples/gradle/dokka-versioning-multimodule-example/parentProject/build.gradle.kts
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
+ */
+
import org.jetbrains.dokka.gradle.DokkaMultiModuleTask
import org.jetbrains.dokka.versioning.VersioningPlugin
import org.jetbrains.dokka.versioning.VersioningConfiguration
diff --git a/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/build.gradle.kts
index bf1513f8..991e6c4b 100644
--- a/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/build.gradle.kts
+++ b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/build.gradle.kts
@@ -1 +1,5 @@
+/*
+ * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
+ */
+
// intentionally empty - build config is set in the root build.gradle.kts
diff --git a/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/build.gradle.kts
index bf1513f8..991e6c4b 100644
--- a/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/build.gradle.kts
+++ b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/build.gradle.kts
@@ -1 +1,5 @@
+/*
+ * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
+ */
+
// intentionally empty - build config is set in the root build.gradle.kts
diff --git a/examples/gradle/dokka-versioning-multimodule-example/settings.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/settings.gradle.kts
index ec6614f0..0644117f 100644
--- a/examples/gradle/dokka-versioning-multimodule-example/settings.gradle.kts
+++ b/examples/gradle/dokka-versioning-multimodule-example/settings.gradle.kts
@@ -1,5 +1,9 @@
+/*
+ * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
+ */
+
include(":parentProject")
include(":parentProject:childProjectA")
include(":parentProject:childProjectB")
-rootProject.name = "dokka-versioning-multimodule-example" \ No newline at end of file
+rootProject.name = "dokka-versioning-multimodule-example"