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

sourceCompatibility = 1.8

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

dependencies {
    compile project(":core")
    compileOnly group: 'org.apache.ant', name: 'ant', version: ant_version
}