aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runners/ant/src/main/kotlin/ant/dokka.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/runners/ant/src/main/kotlin/ant/dokka.kt b/runners/ant/src/main/kotlin/ant/dokka.kt
index 65cc0b51..e9cb35a2 100644
--- a/runners/ant/src/main/kotlin/ant/dokka.kt
+++ b/runners/ant/src/main/kotlin/ant/dokka.kt
@@ -26,6 +26,7 @@ class DokkaAntTask: Task() {
var moduleName: String? = null
var outputDir: String? = null
var outputFormat: String = "html"
+ var impliedPlatforms: String = ""
var jdkVersion: Int = 6
var skipDeprecated: Boolean = false
@@ -100,7 +101,8 @@ class DokkaAntTask: Task() {
DocumentationOptions(outputDir!!, outputFormat,
skipDeprecated = skipDeprecated,
sourceLinks = sourceLinks,
- jdkVersion = jdkVersion)
+ jdkVersion = jdkVersion,
+ impliedPlatforms = impliedPlatforms.split(','))
)
generator.generate()
}