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

listOf().

This commit is contained in:
Cedric Beust 2016-04-11 09:48:18 -07:00
parent 09c6f4c6ba
commit 494edaed90

View file

@ -180,7 +180,7 @@ class DependencyManager @Inject constructor(val executors: KobaltExecutors, val
// Make sure that classes/ and test-classes/ are always at the top of this classpath,
// so that older versions of that project on the classpath don't shadow them
val result2 = arrayListOf(FileDependency(KFiles.makeOutputDir(project).absolutePath),
val result2 = listOf(FileDependency(KFiles.makeOutputDir(project).absolutePath),
FileDependency(KFiles.makeOutputTestDir(project).absolutePath)) +
reorderDependencies(result)
return result2