Skip to content

Commit

Permalink
dependency: upgrade kotlin to 1.6.10, dokka to 1.6.0, jackson to 2.13…
Browse files Browse the repository at this point in the history
….0, graphql-kotlin to 5.3.1, grpc java to 1.43.0, kotest to 5.0.2, vertx to 4.2.2, and some others.
  • Loading branch information
xiaodongw committed Dec 15, 2021
1 parent 7e92c15 commit ed281c3
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
9 changes: 8 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ allprojects {
}

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

testImplementation("io.kotest:kotest-framework-engine-jvm:${Deps.kotestVersion}")
testImplementation("io.kotest:kotest-runner-junit5-jvm:${Deps.kotestVersion}")
Expand Down Expand Up @@ -123,4 +123,11 @@ allprojects {
signing {
isRequired = !isSnapshot
}

// configure the test log output
configure<com.adarshr.gradle.testlogger.TestLoggerExtension> {
theme = com.adarshr.gradle.testlogger.theme.ThemeType.MOCHA
showExceptions = true
showStandardStreams = false
}
}
4 changes: 2 additions & 2 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ repositories {
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0")
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.5.31")
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.6.0")
}
8 changes: 4 additions & 4 deletions buildSrc/src/main/kotlin/build/Deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package build

@Suppress("unused")
object Deps {
const val kotlinVersion = "1.6.0"
const val kotlinVersion = "1.6.10"
const val kotlinCoroutineVersion = "1.5.2"
const val protobufVersion = "3.19.1"
const val grpcJavaVersion = "1.42.1"
const val kotestVersion = "4.6.0"
const val vertxVersion = "4.2.1"
const val grpcJavaVersion = "1.43.0"
const val kotestVersion = "5.0.2"
const val vertxVersion = "4.2.2"
}
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.5.31")
dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.6.0")
}

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.0"
id("com.expediagroup.graphql") version "5.3.1"
}

description = "Kert GraphQL support"

librarySupport()

dependencies {
val graphqlKotlinVersion = "5.3.0"
val jacksonVersion = "2.12.3"
val graphqlKotlinVersion = "5.3.1"
val jacksonVersion = "2.13.0"

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

0 comments on commit ed281c3

Please sign in to comment.