File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 11### 0.5.10
22* Add the generated files to the standard clean task instead of using custom clean tasks.
33* Some optimizations for configuration.
4+ * Use Kotlin 1.1 to compile (but at source level 1.0)
45
56### 0.5.9:
67* Fix compatibility with jdk 7. Fix warnings.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ buildscript {
2323
2424 ext {
2525 if (! rootProject. ext. has(' kotlin_version' )) {
26- kotlin_version = ' 1.0. 3'
26+ kotlin_version = ' 1.1.2- 3'
2727 }
2828 }
2929 dependencies {
@@ -77,6 +77,13 @@ bintray {
7777 }
7878}
7979
80+ compileKotlin {
81+ kotlinOptions {
82+ apiVersion = ' 1.0'
83+ languageVersion = ' 1.0'
84+ }
85+ }
86+
8087publishing {
8188 publications {
8289 MyPublication (MavenPublication ) {
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-2.14 -all.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-3.2.1 -all.zip
You can’t perform that action at this time.
0 commit comments