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