diff options
Diffstat (limited to 'integration-tests/gradle/projects/it-configuration/build.gradle.kts')
-rw-r--r-- | integration-tests/gradle/projects/it-configuration/build.gradle.kts | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/integration-tests/gradle/projects/it-configuration/build.gradle.kts b/integration-tests/gradle/projects/it-configuration/build.gradle.kts deleted file mode 100644 index 736202bb..00000000 --- a/integration-tests/gradle/projects/it-configuration/build.gradle.kts +++ /dev/null @@ -1,33 +0,0 @@ -/* - * 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.DokkaTask -import org.jetbrains.dokka.gradle.kotlinSourceSet - -plugins { - kotlin("jvm") - id("org.jetbrains.dokka") -} - -buildscript { - dependencies { - classpath("org.jetbrains.dokka:dokka-base:${System.getenv("DOKKA_VERSION")}") - } -} - -version = "1.9.20-SNAPSHOT" - -apply(from = "../template.root.gradle.kts") - -tasks.withType<DokkaTask> { - moduleName.set("Configuration Test Project") - dokkaSourceSets { - configureEach { - failOnWarning.set(project.getBooleanProperty("fail_on_warning")) - reportUndocumented.set(project.getBooleanProperty("report_undocumented")) - } - } -} - -fun Project.getBooleanProperty(name: String): Boolean = (project.property(name) as String).toBoolean() |