From e34d1535ffc14b9abd50d59cf6475512059541f0 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Fri, 25 Mar 2016 11:29:08 +0400 Subject: [PATCH] Not needed. --- .../src/main/kotlin/com/beust/kobalt/maven/Pom2.kt | 1 - src/test/kotlin/com/beust/kobalt/maven/DownloadTest.kt | 8 -------- 2 files changed, 9 deletions(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/maven/Pom2.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/maven/Pom2.kt index 11a71b03..71d7d6af 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/maven/Pom2.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/maven/Pom2.kt @@ -72,7 +72,6 @@ class Pom2(val pomProject: PomProject) { groupId + ":" + artifactId + ":" + version } val dep = dependencyManager.createMaven(id) - println("DEP: " + dep) } return Either(null, Pom2(result)) } catch(ex: Exception) { diff --git a/src/test/kotlin/com/beust/kobalt/maven/DownloadTest.kt b/src/test/kotlin/com/beust/kobalt/maven/DownloadTest.kt index 629c3482..f07b18b7 100644 --- a/src/test/kotlin/com/beust/kobalt/maven/DownloadTest.kt +++ b/src/test/kotlin/com/beust/kobalt/maven/DownloadTest.kt @@ -176,13 +176,5 @@ class DownloadTest @Inject constructor( Assert.assertTrue(rr.localPath != null && rr.localPath!!.startsWith("junit/junit")) Assert.assertEquals(rr.version.toString(), "4.12") } - - @Test - fun containerPom3() { - val pom = Pom2.parse( - File("/Users/beust/kotlin/kobalt/src/test/resources/guice-parent-4.0.pom"), dependencyManager) - println("POM: ${pom.value?.pomProject}") - println("") - } }