aboutsummaryrefslogtreecommitdiff
path: root/runners/cli/build.gradle
blob: 24db0b1e34afed942fbb9c8c5ba2d09456ffbcfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
apply plugin: 'kotlin'

sourceCompatibility = 1.8

tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
    kotlinOptions {
        languageVersion = language_version
        apiVersion = language_version
        jvmTarget = "1.8"
    }
}

dependencies {
    implementation "org.jetbrains.kotlinx:kotlinx-cli-jvm:0.1.0-dev-3"
    implementation project(":core")
}