aboutsummaryrefslogtreecommitdiff
path: root/runners/ant/build.gradle
blob: 3c4d4ddbe20746ec08a5ee8ca9ec7150784e6348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
sourceCompatibility = 1.5

configurations {
    provided
}

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


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