cloud-kotlin-coroutines (#318)

* Builder coroutine support

* Move coroutines to version catalog

* Add kdocs

* Add note about simple coordinator

* Update changelog
This commit is contained in:
Jason 2021-11-15 16:35:21 -08:00
parent 6011bd1d63
commit 3f0ef5715c
10 changed files with 298 additions and 3 deletions

View file

@ -11,6 +11,7 @@ plugins:
versions:
kotlin: &kotlin 1.5.31
dokka: *kotlin
coroutines: 1.5.2
checkerQual: 3.14.0
# build-logic
@ -26,6 +27,15 @@ dependencies:
name: checker-qual
version: { ref: checkerQual }
coroutinesCore:
group: org.jetbrains.kotlinx
name: kotlinx-coroutines-core
version: { ref: coroutines }
coroutinesJdk8:
group: org.jetbrains.kotlinx
name: kotlinx-coroutines-jdk8
version: { ref: coroutines }
# build-logic
indraCommon:
group: net.kyori
@ -61,3 +71,6 @@ dependencies:
version: { ref: ktlint }
bundles:
coroutines:
- coroutinesCore
- coroutinesJdk8