From 90d582a1c5f05b65d325bac8565b488f2f7438e8 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Mon, 20 Feb 2017 06:54:09 -0800 Subject: [PATCH] Display plug-in dependencies in KobaltClient. --- src/main/kotlin/com/beust/kobalt/app/remote/KobaltClient.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/kotlin/com/beust/kobalt/app/remote/KobaltClient.kt b/src/main/kotlin/com/beust/kobalt/app/remote/KobaltClient.kt index 87ce9d21..1c83413c 100644 --- a/src/main/kotlin/com/beust/kobalt/app/remote/KobaltClient.kt +++ b/src/main/kotlin/com/beust/kobalt/app/remote/KobaltClient.kt @@ -64,6 +64,9 @@ class KobaltClient : Runnable { if (wsCommand.commandName == RemoteDependencyData.GetDependenciesData.NAME) { val dd = Gson().fromJson(wsCommand.payload, RemoteDependencyData.GetDependenciesData::class.java) println("Received dependency data for " + dd.projects.size + " projects") + if (dd.pluginDependencies.any()) { + println(" Plug-ins: " + dd.pluginDependencies.map { it.path }.joinToString(" ")) + } dd.projects.forEach { println(" === Project: " + it.name) if (dd.pluginDependencies.any()) {