aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurimas Liutikas <aurimas@google.com>2021-04-21 01:05:05 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-04-21 01:05:05 +0000
commitaffbec5337dab70c769fb0a4b4456d022a4f3a4f (patch)
tree7ed184660673e7bac61ae4cd824405bfe2ddb8f7
parent84efc9b32678c4c9e0e578ca252534b6824363a1 (diff)
parent413a49dd20758e89b3d327bc27cc1eb1cc563970 (diff)
downloaddokka-affbec5337dab70c769fb0a4b4456d022a4f3a4f.tar.gz
Annotate two properties in DokkaTask am: 1ba19b6c05 am: 2d9cf30691 am: 413a49dd20
Original change: https://android-review.googlesource.com/c/platform/external/dokka/+/1682145 Change-Id: I36f2a6764e0bb970a5346c8476a802ad7b7840c4
-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