diff options
author | Marcin Aman <marcin.aman@gmail.com> | 2021-06-21 11:44:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-21 11:44:36 +0200 |
commit | a0b77276242ec227f98bf69ed878b9d71c1c5888 (patch) | |
tree | 796cc4638808ae26a060d3f1b17f20aa117d5af0 /integration-tests/gradle/projects/it-basic | |
parent | 1b918994dbfe8f4d345c11c054c8b5ffc9b65cd4 (diff) | |
download | dokka-a0b77276242ec227f98bf69ed878b9d71c1c5888.tar.gz dokka-a0b77276242ec227f98bf69ed878b9d71c1c5888.tar.bz2 dokka-a0b77276242ec227f98bf69ed878b9d71c1c5888.zip |
Cachable task (#1905)
* Add tests for Gradle caching scenarios and adjust
tasks to honor caching such that tests pass
* Make dokka tasks cachable
* Make dokka tasks cachable
* Make dokka tasks cachable
* Fix gradle assertion
Co-authored-by: Volker Leck <volker.leck@gmail.com>
Diffstat (limited to 'integration-tests/gradle/projects/it-basic')
-rw-r--r-- | integration-tests/gradle/projects/it-basic/build.gradle.kts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration-tests/gradle/projects/it-basic/build.gradle.kts b/integration-tests/gradle/projects/it-basic/build.gradle.kts index 414037fe..e5abd7e1 100644 --- a/integration-tests/gradle/projects/it-basic/build.gradle.kts +++ b/integration-tests/gradle/projects/it-basic/build.gradle.kts @@ -50,5 +50,5 @@ tasks.withType<DokkaTask> { } 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")}"] }""")) + 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")}"] }""")) } |