diff --git a/example/kobalt/src/Build.kt b/example/kobalt/src/Build.kt index 3c9c4ee..82fd738 100644 --- a/example/kobalt/src/Build.kt +++ b/example/kobalt/src/Build.kt @@ -6,8 +6,8 @@ import net.thauvin.erik.kobalt.plugin.exec.* val repos = repos("https://dl.bintray.com/ethauvin/maven/") -//val pl = plugins(file("../kobaltBuild/libs/kobalt-exec-0.6.1.jar")) -val pl = plugins("net.thauvin.erik:kobalt-exec:0.6.1") +//val pl = plugins(file("../kobaltBuild/libs/kobalt-exec-0.6.2.jar")) +val pl = plugins("net.thauvin.erik:kobalt-exec:0.6.2") val example = project { @@ -56,4 +56,4 @@ val example2 = project { commandLine(listOf("cmd", "/c", "tasklist | find \"cmd.exe\""), os = setOf(Os.WINDOWS), fail = setOf(Fail.NONE)) commandLine(listOf("/bin/sh", "-c", "ps aux | grep bash"), os = setOf(Os.LINUX)) } -} \ No newline at end of file +} diff --git a/kobalt/src/Build.kt b/kobalt/src/Build.kt index 7337d5b..20c1be6 100644 --- a/kobalt/src/Build.kt +++ b/kobalt/src/Build.kt @@ -10,7 +10,7 @@ import org.apache.maven.model.Scm import net.thauvin.erik.kobalt.plugin.versioneye.* -val pl = plugins("net.thauvin.erik:kobalt-versioneye:") +val pl = plugins("net.thauvin.erik:kobalt-versioneye:0.4.2-beta") val repos = repos() val dev = false @@ -21,7 +21,7 @@ val p = project { name = "kobalt-exec" group = "net.thauvin.erik" artifactId = name - version = "0.6.1" + version = "0.6.2" pom = Model().apply { description = "Command Line Execution plug-in for the Kobalt build system."