Added circleci configuration.
This commit is contained in:
parent
dc99641c3e
commit
9d5b969dd9
4 changed files with 18 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
# Command Line Execution plug-in for [Kobalt](http://beust.com/kobalt/home/index.html)
|
||||
|
||||
[](http://opensource.org/licenses/BSD-3-Clause) [](https://travis-ci.org/ethauvin/kobalt-exec) [](https://bintray.com/ethauvin/maven/kobalt-exec/_latestVersion)
|
||||
[](http://opensource.org/licenses/BSD-3-Clause) [](https://travis-ci.org/ethauvin/kobalt-exec) [](https://circleci.com/gh/ethauvin/kobalt-exec/tree/master) [](https://bintray.com/ethauvin/maven/kobalt-exec/_latestVersion)
|
||||
|
||||
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.
|
||||
|
||||
|
|
11
circle.yml
Normal file
11
circle.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
machine:
|
||||
java:
|
||||
version: oraclejdk8
|
||||
|
||||
dependencies:
|
||||
override:
|
||||
- chmod +x kobaltw
|
||||
|
||||
test:
|
||||
override:
|
||||
- ./kobaltw assemble
|
|
@ -9,7 +9,7 @@ import net.thauvin.erik.kobalt.plugin.exec.*
|
|||
// ./kobaltw ps --log 2
|
||||
|
||||
val bs = buildScript {
|
||||
//repos(file("K:/maven/repository"))
|
||||
repos(localMaven())
|
||||
plugins("net.thauvin.erik:kobalt-exec:")
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
import com.beust.kobalt.buildScript
|
||||
import com.beust.kobalt.localMaven
|
||||
import com.beust.kobalt.file
|
||||
import com.beust.kobalt.plugin.packaging.assemble
|
||||
import com.beust.kobalt.plugin.publish.autoGitTag
|
||||
|
@ -13,7 +13,7 @@ import org.apache.maven.model.Model
|
|||
import org.apache.maven.model.Scm
|
||||
|
||||
val bs = buildScript {
|
||||
repos(file("K:/maven/repository"))
|
||||
repos(localMaven())
|
||||
plugins("net.thauvin.erik:kobalt-versioneye:", "net.thauvin.erik:kobalt-maven-local:")
|
||||
}
|
||||
|
||||
|
@ -47,11 +47,13 @@ val p = project {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly("com.beust:$kobaltDependency:")
|
||||
compile("com.beust:$kobaltDependency:")
|
||||
compile("org.jetbrains.kotlin:kotlin-stdlib:1.1.2-4")
|
||||
}
|
||||
|
||||
dependenciesTest {
|
||||
compile("org.testng:testng:")
|
||||
compile("org.jetbrains.kotlin:kotlin-test:1.1.2-4")
|
||||
}
|
||||
|
||||
assemble {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue