1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Compiling directories defeats increments compiling.

So turning it back off for now.
This commit is contained in:
Cedric Beust 2016-07-09 02:42:35 -08:00
parent 1c9514ede8
commit 8418b74375

View file

@ -111,7 +111,7 @@ class KotlinPlugin @Inject constructor(val executors: KobaltExecutors, val depen
/** The Kotlin compiler should run before the Java one, hence priority - 5 */
val compiler = CompilerDescription(PLUGIN_NAME, "kotlin", SOURCE_SUFFIXES, KotlinCompiler(),
ICompilerDescription.DEFAULT_PRIORITY - 5, canCompileDirectories = true)
ICompilerDescription.DEFAULT_PRIORITY - 5, canCompileDirectories = false)
override fun compilersFor(project: Project, context: KobaltContext) = arrayListOf(compiler)