aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-11-02 03:06:41 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-11-02 18:00:04 +0300
commita10c1f852813ea1c0e4f15b3c25a7a5388bbc996 (patch)
treeb69a47710d1739f1ca678960acac9572f2c59e8c
parent05d613daf13d7a0866b65ed555544b62e8197547 (diff)
downloaddokka-a10c1f852813ea1c0e4f15b3c25a7a5388bbc996.tar.gz
dokka-a10c1f852813ea1c0e4f15b3c25a7a5388bbc996.tar.bz2
dokka-a10c1f852813ea1c0e4f15b3c25a7a5388bbc996.zip
Make classpath Iterable<File> #218
Fix #218
-rw-r--r--runners/gradle-plugin/src/main/kotlin/main.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runners/gradle-plugin/src/main/kotlin/main.kt b/runners/gradle-plugin/src/main/kotlin/main.kt
index 37feccc9..02970ae0 100644
--- a/runners/gradle-plugin/src/main/kotlin/main.kt
+++ b/runners/gradle-plugin/src/main/kotlin/main.kt
@@ -82,7 +82,7 @@ open class DokkaTask : DefaultTask() {
@Deprecated("Going to be removed in 0.9.16, use classpath + sourceDirs instead if kotlinTasks is not suitable for you")
@Input var processConfigurations: List<Any?> = emptyList()
- @Input var classpath: List<File> = arrayListOf()
+ @InputFiles var classpath: Iterable<File> = arrayListOf()
@Input
var includes: List<Any?> = arrayListOf()