Skip to content

Commit

Permalink
dependency: upgrade coroutine to 1.6.0, vertx to 4.2.4, grpc to 1.44.…
Browse files Browse the repository at this point in the history
…0, protobuf to 3.19.4, and some other libs.
  • Loading branch information
xiaodongw committed Feb 2, 2022
1 parent 514e115 commit 8333230
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
`maven-publish`
id("com.github.ben-manes.versions").version("0.39.0")
id("com.adarshr.test-logger").version("3.0.0")
id("io.kotest") version "0.3.8"
id("io.kotest") version "0.3.9"
}

allprojects {
Expand All @@ -36,7 +36,7 @@ allprojects {
}

dependencies {
implementation("io.github.microutils:kotlin-logging:2.1.16")
implementation("io.github.microutils:kotlin-logging:2.1.21")

testImplementation("io.kotest:kotest-framework-engine-jvm:${Deps.kotestVersion}")
testImplementation("io.kotest:kotest-runner-junit5-jvm:${Deps.kotestVersion}")
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")
implementation("com.google.gradle:osdetector-gradle-plugin:1.6.2")
implementation("com.google.protobuf:protobuf-gradle-plugin:0.8.13")
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.6.0")
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.6.10")
}
10 changes: 5 additions & 5 deletions buildSrc/src/main/kotlin/build/Deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package build
@Suppress("unused")
object Deps {
const val kotlinVersion = "1.6.10"
const val kotlinCoroutineVersion = "1.5.2"
const val protobufVersion = "3.19.1"
const val grpcJavaVersion = "1.43.0"
const val kotestVersion = "5.0.2"
const val vertxVersion = "4.2.2"
const val kotlinCoroutineVersion = "1.6.0"
const val protobufVersion = "3.19.4"
const val grpcJavaVersion = "1.44.0"
const val kotestVersion = "5.1.0"
const val vertxVersion = "4.2.4"
}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/build/Library.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fun Project.librarySupport() {
api("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:${Deps.kotlinCoroutineVersion}")
implementation("org.slf4j:slf4j-api:1.7.25")

dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.6.0")
dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.6.10")
}

val sourceSets = extensions.getByName("sourceSets") as SourceSetContainer
Expand Down
6 changes: 3 additions & 3 deletions kert-graphql/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import build.*

plugins {
id("com.expediagroup.graphql") version "5.3.1"
id("com.expediagroup.graphql") version "5.3.2"
}

description = "Kert GraphQL support"

librarySupport()

dependencies {
val graphqlKotlinVersion = "5.3.1"
val jacksonVersion = "2.13.0"
val graphqlKotlinVersion = "5.3.2"
val jacksonVersion = "2.13.1"

api(project(":kert-http"))
api("com.expediagroup:graphql-kotlin-server:${graphqlKotlinVersion}")
Expand Down

0 comments on commit 8333230

Please sign in to comment.