diff options
Diffstat (limited to 'integration-tests/gradle/projects/it-basic-groovy/build.gradle')
-rw-r--r-- | integration-tests/gradle/projects/it-basic-groovy/build.gradle | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/integration-tests/gradle/projects/it-basic-groovy/build.gradle b/integration-tests/gradle/projects/it-basic-groovy/build.gradle deleted file mode 100644 index f368ed10..00000000 --- a/integration-tests/gradle/projects/it-basic-groovy/build.gradle +++ /dev/null @@ -1,54 +0,0 @@ -plugins { - id 'org.jetbrains.kotlin.jvm' - id("org.jetbrains.dokka") -} - -apply from: '../template.root.gradle.kts' - -dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib" -} - -dokkaHtml { - outputDirectory = new File(buildDir, "/dokka/customHtml") - failOnWarning = false - dokkaSourceSets { - customSourceSet { - sourceRoot(file("src/main/java")) - sourceRoot(file("src/main/kotlin")) - displayName.set("custom") - reportUndocumented.set(true) - } - - configureEach { - perPackageOption { // testing closures - matchingRegex.set(".*internal.*") - suppress.set(true) - } - - sourceLink { // testing closures - localDirectory.set(file("src/main")) - remoteUrl.set( - new URL( - "https://github.com/Kotlin/dokka/tree/master/" + - "integration-tests/gradle/projects/it-basic-groovy/src/main" - ) - ) - } - } - } - -} - -dokkaJavadoc { - outputDirectory = new File(buildDir, "dokka/customJavadoc") -} - -dokkaGfm { - outputDirectory = new File(buildDir, "dokka/customGfm") -} - -dokkaJekyll { - outputDirectory = new File(buildDir, "dokka/customJekyll") -} - |