From 7e360c8c1acf8d96e9330b8efa4dd7deb1595593 Mon Sep 17 00:00:00 2001 From: ChachyDev Date: Mon, 21 Jun 2021 20:33:36 +0100 Subject: [PATCH] Update Kotlin and Ktor --- build.gradle | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 53a1101..0a4aeba 100644 --- a/build.gradle +++ b/build.gradle @@ -1,20 +1,19 @@ plugins { - id 'org.jetbrains.kotlin.jvm' version '1.4.0' + id 'org.jetbrains.kotlin.jvm' version '1.5.10' } group 'si.ksoft' -version '1.0-SNAPSHOT' +version '2.1.1' repositories { mavenCentral() - jcenter() } dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" - implementation "io.ktor:ktor-client-gson:1.4.0" - implementation "io.ktor:ktor-client-core:1.4.0" - implementation "io.ktor:ktor-client-apache:1.4.0" + implementation "io.ktor:ktor-client-gson:1.6.0" + implementation "io.ktor:ktor-client-core:1.6.0" + implementation "io.ktor:ktor-client-apache:1.6.0" } compileKotlin {