Fix resourcesDir that cannot be imported due to not being a File

This commit is contained in:
Sergey Igushkin
2018-10-16 14:22:54 +03:00
parent e103bea211
commit c25cdb4264
2 changed files with 13 additions and 4 deletions
@@ -9,9 +9,11 @@ import org.gradle.api.Named
import org.gradle.api.attributes.HasAttributes
import org.gradle.api.file.ConfigurableFileCollection
import org.gradle.api.file.FileCollection
import java.io.File
interface KotlinCompilationOutput {
var resourcesDir: Any
var resourcesDirProvider: Any
val resourcesDir: File
val classesDirs: ConfigurableFileCollection
val allOutputs: FileCollection