mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 00:17:11 -07:00
Preserve dependency order.
This commit is contained in:
parent
dbb06d0e79
commit
c43967bec9
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ open class JvmCompilerPlugin @Inject constructor(
|
|||
scopes = listOf(Scope.TEST))
|
||||
val compileDependencies = dependencyManager.calculateDependencies(project, context,
|
||||
scopes = listOf(Scope.COMPILE))
|
||||
val allDependencies = (compileDependencies + testDependencies).toHashSet()
|
||||
val allDependencies = (testDependencies + compileDependencies).distinct()
|
||||
return testContributor.run(project, context, configName, allDependencies.toList())
|
||||
} else {
|
||||
context.logger.log(project.name, 2,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue