diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-03-19 15:04:44 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-03-19 15:04:44 +0100 |
commit | 92b0386b0c83b9815eda5bebe2f2a48ae47f6eaa (patch) | |
tree | 48edb9d6311f6c17d39cd127eb55ac4ef8383113 /ant/src | |
parent | 67c7a94c348d4b944bb430a8ceed6537b8d22e4a (diff) | |
download | dokka-92b0386b0c83b9815eda5bebe2f2a48ae47f6eaa.tar.gz dokka-92b0386b0c83b9815eda5bebe2f2a48ae47f6eaa.tar.bz2 dokka-92b0386b0c83b9815eda5bebe2f2a48ae47f6eaa.zip |
add skipDeprecated option in Ant task
Diffstat (limited to 'ant/src')
-rw-r--r-- | ant/src/dokka.kt | 5 |
1 files changed, 4 insertions, 1 deletions
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() } |