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

sourceCompatibility = 1.6

configurations {
    provided
}

tasks.withType(AbstractCompile) {
    classpath += configurations.provided
}


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