Kotlin 1.3.61

kotlin-coroutines 1.3.3
This commit is contained in:
Tapac
2019-12-14 11:59:16 +03:00
parent 59f4c9f349
commit f09852ebb3
4 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
plugins {
kotlin("jvm") version "1.3.50" apply true
kotlin("jvm") version "1.3.61" apply true
id("tanvd.kosogor") version "1.0.7" apply true
}

View File

@@ -11,7 +11,7 @@ repositories {
dependencies {
api(kotlin("stdlib"))
api(kotlin("reflect"))
api("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.3.2")
api("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.3.3")
api("org.slf4j", "slf4j-api", "1.7.25")
compileOnly("com.h2database", "h2", "1.4.199")
}

View File

@@ -13,7 +13,7 @@ repositories {
val dialect: String by project
dependencies {
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.3.2")
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.3.3")
implementation(project(":exposed-core"))
implementation(project(":exposed-jdbc"))
implementation(project(":exposed-dao"))
@@ -22,7 +22,7 @@ dependencies {
implementation("log4j", "log4j", "1.2.17")
implementation("junit", "junit", "4.12")
implementation("org.hamcrest", "hamcrest-library", "1.3")
implementation("org.jetbrains.kotlinx","kotlinx-coroutines-debug", "1.3.2")
implementation("org.jetbrains.kotlinx","kotlinx-coroutines-debug", "1.3.3")
implementation("com.opentable.components", "otj-pg-embedded", "0.12.0")
implementation("mysql", "mysql-connector-mxj", "5.0.12")

View File

@@ -19,7 +19,7 @@ dependencies {
implementation(project(":exposed-jdbc"))
api("org.springframework", "spring-jdbc", SPRING_FRAMEWORK_VERSION)
api("org.springframework", "spring-context", SPRING_FRAMEWORK_VERSION)
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.3.2")
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.3.3")
testImplementation(project(":exposed-dao"))
testImplementation(kotlin("test-junit"))