aboutsummaryrefslogtreecommitdiff
path: root/runners/ant/build.gradle
blob: e7dcd441ea1ac710a63f66f2d680a40d26da623c (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 = "1.2"
        apiVersion = languageVersion
        jvmTarget = "1.8"
    }
}

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