diff --git a/src/main/kotlin/com/beust/kobalt/app/remote/DependencyData.kt b/src/main/kotlin/com/beust/kobalt/app/remote/DependencyData.kt index 186f54b4..4f1af79e 100644 --- a/src/main/kotlin/com/beust/kobalt/app/remote/DependencyData.kt +++ b/src/main/kotlin/com/beust/kobalt/app/remote/DependencyData.kt @@ -80,7 +80,7 @@ class DependencyData @Inject constructor(val executors: KobaltExecutors, val dep fun testDependenciesGraph(project: Project, name: String): List { val depLambda = { dep : IClasspathDependency -> dep.directDependencies() } return DynamicGraph.Companion.transitiveClosureGraph(project.testDependencies, depLambda) - .map { toDependencyData2("compile", it)} + .map { toDependencyData2("testCompile", it)} } val allTasks = hashSetOf()