aboutsummaryrefslogtreecommitdiff
path: root/runners/cli/build.gradle
blob: ed5601121f2926255586c6462794f192c52de8ae (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-5"
    implementation project(":core")
}