From 7f2351b1acf69f30cda31186614181bc676a2b10 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Thu, 21 Apr 2016 01:27:33 -0800 Subject: [PATCH] Better testng detection. --- .../src/main/kotlin/com/beust/kobalt/internal/TestNgRunner.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/TestNgRunner.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/TestNgRunner.kt index 6b9c1b0b..db917077 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/TestNgRunner.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/TestNgRunner.kt @@ -11,7 +11,7 @@ public class TestNgRunner() : GenericTestRunner() { override val mainClass = "org.testng.TestNG" - override val dependencyName = "org.testng" + override val dependencyName = "testng" fun defaultOutput(project: Project) = KFiles.joinDir(project.buildDirectory, "test-output")