Added coroutines, updated version

This commit is contained in:
Robinson 2021-04-13 15:08:58 +02:00
parent e7c87f2be1
commit 669696b347
2 changed files with 9 additions and 1 deletions

View File

@ -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

View File

@ -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")