Skip to content

Commit e1f2779

Browse files
authored
Merge pull request #160 from AppDevNext/Kotlin-1.3.xx
Report errors for all language features that later than 1.3.xx
2 parents a457ee3 + ab974ad commit e1f2779

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ allprojects {
3333
jcenter()
3434
maven { url 'https://jitpack.io' }
3535
}
36+
37+
gradle.projectsEvaluated {
38+
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
39+
kotlinOptions {
40+
apiVersion = '1.3'
41+
languageVersion = '1.3'
42+
}
43+
}
44+
}
3645
}
3746

3847
ext {

0 commit comments

Comments
 (0)