mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Fix the dependent project dependency problem.
This commit is contained in:
parent
7088e781be
commit
b7be064901
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue