Version 0.6.1

This commit is contained in:
Erik C. Thauvin 2016-07-21 23:30:20 -07:00
parent eed5f8798a
commit bb15076c61
3 changed files with 7 additions and 7 deletions

View file

@ -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. 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 ```kotlin
import net.thauvin.erik.kobalt.plugin.exec.* 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" name = "example"
exec { 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: To invoke the `exec` task:

View file

@ -6,8 +6,8 @@ import net.thauvin.erik.kobalt.plugin.exec.*
val repos = repos("https://dl.bintray.com/ethauvin/maven/") 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(file("../kobaltBuild/libs/kobalt-exec-0.6.1.jar"))
val pl = plugins("net.thauvin.erik:kobalt-exec:0.6.0-beta") val pl = plugins("net.thauvin.erik:kobalt-exec:0.6.1")
val example = project { val example = project {

View file

@ -17,7 +17,7 @@ val p = project {
name = "kobalt-exec" name = "kobalt-exec"
group = "net.thauvin.erik" group = "net.thauvin.erik"
artifactId = name artifactId = name
version = "0.6.0-beta" version = "0.6.1"
pom = Model().apply { pom = Model().apply {
description = "Command Line Execution plug-in for the Kobalt build system." description = "Command Line Execution plug-in for the Kobalt build system."