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