Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
```
netty                4.1.109.Final > 4.1.110.Final
libcommon            3.8.0         > 3.8.1
mockito              5.11.0        > 5.12.0
kotlinx-coroutines   1.8.0         > 1.8.1
bouncycastle         1.76          > 1.78.1
fastjson2            2.0.49        > 2.0.50
```
  • Loading branch information
fmjsjx committed May 29, 2024
1 parent 3f31c90 commit ac25eab
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ repositories {

dependencies {
// netty-bom
api(platform("io.netty:netty-bom:4.1.109.Final"))
api(platform("io.netty:netty-bom:4.1.110.Final"))
// libcommon-bom
api(platform("com.github.fmjsjx:libcommon-bom:3.8.0"))
api(platform("com.github.fmjsjx:libcommon-bom:3.8.1"))
// jackson2-bom
api(platform("com.fasterxml.jackson:jackson-bom:2.17.1"))
// junit-bom
testImplementation(platform("org.junit:junit-bom:5.10.2"))
// mockito
testImplementation(platform("org.mockito:mockito-bom:5.11.0"))
testImplementation(platform("org.mockito:mockito-bom:5.12.0"))
// log4j2
implementation(platform("org.apache.logging.log4j:log4j-bom:2.23.1"))
// kotlin coroutines
implementation(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.0"))
implementation(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.1"))

constraints {
api("org.slf4j:slf4j-api:2.0.13")
Expand All @@ -37,8 +37,8 @@ dependencies {
val kotlinVersion = "1.9.0"
implementation("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")
implementation("org.bouncycastle:bcpkix-jdk15to18:1.76")
val fastjson2Version = "2.0.49"
implementation("org.bouncycastle:bcpkix-jdk15to18:1.78.1")
val fastjson2Version = "2.0.50"
api("com.alibaba.fastjson2:fastjson2:$fastjson2Version")
api("com.alibaba.fastjson2:fastjson2-kotlin:$fastjson2Version")
}
Expand Down

0 comments on commit ac25eab

Please sign in to comment.