Update Gradle and Kotlin (#1921)

This commit is contained in:
arkon 2020-01-05 11:16:58 -05:00 committed by GitHub
parent 98df581cfd
commit 8201a6cc55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -1,11 +1,11 @@
buildscript { buildscript {
ext.kotlin_version = '1.3.21' ext.kotlin_version = '1.3.60'
repositories { repositories {
jcenter() jcenter()
google() google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.3.2' classpath 'com.android.tools.build:gradle:3.5.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
} }

View File

@ -1,6 +1,6 @@
#Mon Jan 28 18:51:00 EST 2019 #Thu Dec 26 12:52:51 EST 2019
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

View File

@ -11,7 +11,7 @@ ext {
} }
dependencies { dependencies {
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.13.0' implementation 'org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0'
compileOnly 'com.google.code.gson:gson:2.8.2' compileOnly 'com.google.code.gson:gson:2.8.2'
compileOnly project(':duktape-stub') compileOnly project(':duktape-stub')
} }