From 92b0386b0c83b9815eda5bebe2f2a48ae47f6eaa Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 19 Mar 2015 15:04:44 +0100 Subject: add skipDeprecated option in Ant task --- ant/src/dokka.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ant/src/dokka.kt') diff --git a/ant/src/dokka.kt b/ant/src/dokka.kt index 051b6fe7..a6dccfb7 100644 --- a/ant/src/dokka.kt +++ b/ant/src/dokka.kt @@ -23,6 +23,8 @@ class DokkaAntTask(): Task() { public var outputDir: String? = null public var outputFormat: String = "html" + public var skipDeprecated: Boolean = false + public val compileClasspath: Path = Path(getProject()) public val sourcePath: Path = Path(getProject()) public val samplesPath: Path = Path(getProject()) @@ -98,7 +100,8 @@ class DokkaAntTask(): Task() { moduleName!!, outputDir!!, outputFormat, - sourceLinks + sourceLinks, + skipDeprecated ) generator.generate() } -- cgit