diff --git a/src/main/kotlin/com/beust/kobalt/Main.kt b/src/main/kotlin/com/beust/kobalt/Main.kt index 7dc11647..484b33ef 100644 --- a/src/main/kotlin/com/beust/kobalt/Main.kt +++ b/src/main/kotlin/com/beust/kobalt/Main.kt @@ -55,7 +55,6 @@ private class Main @Inject constructor( println(Banner.get() + Kobalt.version + "\n") // runTest() runWithArgs(jc, args) - log(1, "************ shutting down executors") executors.shutdown() debug("All done") }) diff --git a/src/main/kotlin/com/beust/kobalt/ProjectGenerator.kt b/src/main/kotlin/com/beust/kobalt/ProjectGenerator.kt index 7a7c2129..39ca4829 100644 --- a/src/main/kotlin/com/beust/kobalt/ProjectGenerator.kt +++ b/src/main/kotlin/com/beust/kobalt/ProjectGenerator.kt @@ -95,7 +95,6 @@ public class ProjectGenerator : KobaltLogger { private fun updateVersion(dep: Dependency, mapped: Map): Dependency { if ( dep.version.startsWith("\${")) { val property = dep.version.substring(2, dep.version.length() - 1) - println("property = ${property}") return Dependency(dep.groupId, dep.artifactId, "\${${mapped.get(property)}}", dep.optional, dep.scope) } else { return dep