More cleanup.

This commit is contained in:
Erik C. Thauvin 2018-01-02 17:59:00 -08:00
parent 3ddab8a1ef
commit 414e407121
3 changed files with 5 additions and 5 deletions

View file

@ -27,8 +27,8 @@ jobs:
key: kobalt-dependencies-{{ checksum "kobalt/src/Build.kt" }} key: kobalt-dependencies-{{ checksum "kobalt/src/Build.kt" }}
- run: - run:
name: Assemble & Test name: Assemble
command: ./kobaltw assemble test command: ./kobaltw assemble
- store_artifacts: - store_artifacts:
path: kobaltBuild/test-output/ path: kobaltBuild/test-output/

View file

@ -16,4 +16,4 @@ cache:
before_cache: before_cache:
- rm -rf .kobalt/* - rm -rf .kobalt/*
script: ./kobaltw clean assemble test script: ./kobaltw clean assemble

View file

@ -16,7 +16,7 @@ val bs = buildScript {
} }
val dev by profile() val dev by profile()
val kobaltDependency = if (dev) "kobalt-plugin-api" else "kobalt-plugin-api" val kobaltDependency = if (dev) "kobalt" else "kobalt-plugin-api"
val p = project { val p = project {
@ -45,7 +45,7 @@ val p = project {
} }
dependencies { dependencies {
compile("com.beust:$kobaltDependency:") compileOnly("com.beust:$kobaltDependency:")
compile("org.jetbrains.kotlin:kotlin-stdlib:1.2.10") compile("org.jetbrains.kotlin:kotlin-stdlib:1.2.10")
} }