Skip to content

Commit f36e584

Browse files
committed
Update the gradle version.
1 parent 7ccf4db commit f36e584

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

RELEASENOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
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.

build.gradle

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
8087
publishing {
8188
publications {
8289
MyPublication(MavenPublication) {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=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

0 commit comments

Comments
 (0)