Added README.md.

This commit is contained in:
Erik C. Thauvin 2016-07-12 18:28:40 -07:00
parent 0063848981
commit 2f54f85294
4 changed files with 32 additions and 14 deletions

17
README.md Normal file
View file

@ -0,0 +1,17 @@
# Command Line Execution plug-in for [Kobalt](http://beust.com/kobalt/home/index.html)
[![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](http://opensource.org/licenses/BSD-3-Clause) [![Build Status](https://travis-ci.org/ethauvin/kobalt-exec.svg?branch=master)](https://travis-ci.org/ethauvin/kobalt-exec)
```kotlin
var pl = plugins("net.thauvin.erik:kobalt-exc:")
var p = project {
exec {
commandLine(listOf("echo", "Hello, World!"))
}
}
```
```sh
./kobaltw assemble exec
```