• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: 'kotlin'
2
3sourceCompatibility = 1.8
4
5tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
6    kotlinOptions {
7        freeCompilerArgs += "-Xjsr305=strict"
8        languageVersion = "1.2"
9        apiVersion = languageVersion
10        jvmTarget = "1.8"
11    }
12}
13
14dependencies {
15    compile project(":core")
16    compileOnly group: 'org.apache.ant', name: 'ant', version: ant_version
17}
18
19