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

Relative paths.

This commit is contained in:
Cedric Beust 2016-07-18 07:14:15 -07:00
parent fec0b6c713
commit 33eb4b0908

View file

@ -220,8 +220,8 @@ class DependencyManager @Inject constructor(val executors: KobaltExecutors, val
// so that older versions of that project on the classpath don't shadow them
val result = arrayListOf<IClasspathDependency>().apply {
if (isTest) {
add(FileDependency(KFiles.makeOutputDir(project).absolutePath))
add(FileDependency(KFiles.makeOutputTestDir(project).absolutePath))
add(FileDependency(KFiles.makeOutputDir(project).path))
add(FileDependency(KFiles.makeOutputTestDir(project).path))
}
addAll(reorderDependencies(transitive))
}