diff options
Diffstat (limited to 'ant/src/dokka.kt')
-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() } |