From 669696b347cf6ea771cc075f05b269383de56869 Mon Sep 17 00:00:00 2001 From: Robinson Date: Tue, 13 Apr 2021 15:08:58 +0200 Subject: [PATCH] Added coroutines, updated version --- LICENSE | 6 ++++++ build.gradle.kts | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 1e23897..a639a5b 100644 --- a/LICENSE +++ b/LICENSE @@ -13,6 +13,12 @@ Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply See: https://github.com/JetBrains/kotlin/blob/master/license/README.md + - kotlinx.coroutines - Library support for Kotlin coroutines with multiplatform support + [The Apache Software License, Version 2.0] + https://github.com/Kotlin/kotlinx.coroutines + Copyright 2021 + JetBrains s.r.o. + - JSON in Java - A light-weight language independent data interchange format. [The JSON License] https://github.com/stleary/JSON-java diff --git a/build.gradle.kts b/build.gradle.kts index bffb327..ab8d9ee 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -35,7 +35,7 @@ object Extras { // set for the project const val description = "Gradle Plugin to manage various Gradle tasks, such as updating gradle and dependencies" const val group = "com.dorkbox" - const val version = "2.3" + const val version = "2.4" // set as project.ext const val name = "Gradle Utils" @@ -83,6 +83,8 @@ repositories { dependencies { // compile only, so we dont force kotlin/dsl version info into dependencies + compileOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9") + // the kotlin version is taken from the plugin, so it is not necessary to set it here compileOnly("org.jetbrains.kotlin:kotlin-gradle-plugin")