diff options
Diffstat (limited to 'integration-tests')
-rw-r--r-- | integration-tests/gradle/projects/it-basic/build.gradle.kts | 2 | ||||
-rw-r--r-- | integration-tests/maven/projects/it-maven/pom.xml | 2 |
2 files changed, 4 insertions, 0 deletions
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<DokkaTask> { 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 @@ <!-- Disable linking to online JDK documentation --> <noJdkLink>false</noJdkLink> + <suppressObviousFunctions>false</suppressObviousFunctions> + <!-- Allows to customize documentation generation options on a per-package basis --> <perPackageOptions> <packageOptions> |