From 4ddaafb8ec1a45d2696833d1a441f7dbdbb319dd Mon Sep 17 00:00:00 2001 From: Marcin Aman Date: Fri, 26 Mar 2021 20:00:46 +0100 Subject: Fix configuration for suppressing obvious functions (#1789) * Fix suppressObviousFunctions not being present in task configuration * Docs --- integration-tests/gradle/projects/it-basic/build.gradle.kts | 2 ++ integration-tests/maven/projects/it-maven/pom.xml | 2 ++ 2 files changed, 4 insertions(+) (limited to 'integration-tests') diff --git a/integration-tests/gradle/projects/it-basic/build.gradle.kts b/integration-tests/gradle/projects/it-basic/build.gradle.kts index e21b9c2a..414037fe 100644 --- a/integration-tests/gradle/projects/it-basic/build.gradle.kts +++ b/integration-tests/gradle/projects/it-basic/build.gradle.kts @@ -48,5 +48,7 @@ tasks.withType { kotlinSourceSet(kotlin.sourceSets["test"]) } } + suppressObviousFunctions.set(false) + pluginsMapConfiguration.set(mapOf(DokkaBase::class.qualifiedName to """{ "customStyleSheets": ["${file("customResources/logo-styles.css")}", "${file("customResources/custom-style-to-add.css")}"], "customAssets" : ["${file("customResources/custom-resource.svg")}"] }""")) } diff --git a/integration-tests/maven/projects/it-maven/pom.xml b/integration-tests/maven/projects/it-maven/pom.xml index 17aafaf4..8c027d72 100644 --- a/integration-tests/maven/projects/it-maven/pom.xml +++ b/integration-tests/maven/projects/it-maven/pom.xml @@ -124,6 +124,8 @@ false + false + -- cgit