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

Fix the dependent project dependency problem.

This commit is contained in:
Cedric Beust 2015-11-16 03:32:45 -08:00
parent 7088e781be
commit b7be064901

View file

@ -106,7 +106,9 @@ public class DependencyManager @Inject constructor(val executors: KobaltExecutor
} else {
warn("Couldn't find any classes dir for project depended on ${p.name}")
}
result.addAll(calculateDependencies(p, context, projectDescriptions))
val otherDependencies = calculateDependencies(p, context, projectDescriptions,
p.compileDependencies)
result.addAll(otherDependencies)
}
}