diff --git a/README.md b/README.md index a1f14e5..a51de8a 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,14 @@ The plug-in allows for the execution of system commands, similarly to the [Gradle Exec](https://docs.gradle.org/current/dsl/org.gradle.api.tasks.Exec.html) or [Ant Exec](https://ant.apache.org/manual/Tasks/exec.html) tasks. -To use the plug-in included the following in your `Build.kt` file: +To use the plug-in include the following in your `Build.kt` file: ```kotlin import net.thauvin.erik.kobalt.plugin.exec.* -var pl = plugins("net.thauvin.erik:kobalt-exc:") +val pl = plugins("net.thauvin.erik:kobalt-exc:") -var p = project { +val p = project { name = "example" exec { @@ -19,7 +19,7 @@ var p = project { } } ``` -[Examples](https://github.com/ethauvin/kobalt-exec/blob/master/example/kobalt/src/Build.kt) +[View Example](https://github.com/ethauvin/kobalt-exec/blob/master/example/kobalt/src/Build.kt) To invoke the `exec` task: diff --git a/example/kobalt/src/Build.kt b/example/kobalt/src/Build.kt index 70e3537..3c9c4ee 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.0-beta.jar")) -val pl = plugins("net.thauvin.erik:kobalt-exec:0.6.0-beta") +//val pl = plugins(file("../kobaltBuild/libs/kobalt-exec-0.6.1.jar")) +val pl = plugins("net.thauvin.erik:kobalt-exec:0.6.1") val example = project { diff --git a/kobalt/src/Build.kt b/kobalt/src/Build.kt index a187717..898aea5 100644 --- a/kobalt/src/Build.kt +++ b/kobalt/src/Build.kt @@ -17,7 +17,7 @@ val p = project { name = "kobalt-exec" group = "net.thauvin.erik" artifactId = name - version = "0.6.0-beta" + version = "0.6.1" pom = Model().apply { description = "Command Line Execution plug-in for the Kobalt build system."