aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurimas Liutikas <aurimas@google.com>2021-04-21 01:26:43 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-04-21 01:26:43 +0000
commita01904d568aceb0476dee729c172748e0f89aa53 (patch)
tree7ed184660673e7bac61ae4cd824405bfe2ddb8f7
parent21437ffbbaba833753d1d19b2419bee8d86436e9 (diff)
parentaffbec5337dab70c769fb0a4b4456d022a4f3a4f (diff)
downloaddokka-a01904d568aceb0476dee729c172748e0f89aa53.tar.gz
Annotate two properties in DokkaTask am: 1ba19b6c05 am: 2d9cf30691 am: 413a49dd20 am: affbec5337
Original change: https://android-review.googlesource.com/c/platform/external/dokka/+/1682145 Change-Id: I12b64b4748339d2a5407b18ab4d735de3992ccff
-rw-r--r--gradle.properties2
-rw-r--r--runners/gradle-plugin/src/main/kotlin/main.kt2
2 files changed, 3 insertions, 1 deletions
diff --git a/gradle.properties b/gradle.properties
index 263eb1530..2117d734f 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
-dokka_version=0.9.17-g013
+dokka_version=0.9.17-g014
dokka_publication_channel=dokka
#Kotlin compiler and plugin
diff --git a/runners/gradle-plugin/src/main/kotlin/main.kt b/runners/gradle-plugin/src/main/kotlin/main.kt
index 74a2af46b..9555fa828 100644
--- a/runners/gradle-plugin/src/main/kotlin/main.kt
+++ b/runners/gradle-plugin/src/main/kotlin/main.kt
@@ -79,6 +79,7 @@ open class DokkaTask : DefaultTask() {
var moduleName: String = ""
@Input
var outputFormat: String = "html"
+ @get:Internal // handled by getOutputDirectoryAsFile
var outputDirectory: String = ""
@@ -118,6 +119,7 @@ open class DokkaTask : DefaultTask() {
@Input var outlineRoot: String = ""
@Input var dacRoot: String = ""
+ @get:Input
@Deprecated(`deprecationMessage reportNotDocumented`, replaceWith = ReplaceWith("reportUndocumented"))
var reportNotDocumented
get() = reportUndocumented