Version 0.6.2

This commit is contained in:
Erik C. Thauvin 2016-07-31 20:44:47 -07:00
parent f2a2ad9c04
commit ef73af3fbf
2 changed files with 5 additions and 5 deletions

View file

@ -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))
}
}
}

View file

@ -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."