Skip to content

Commit

Permalink
⬆️ Upgrade dependencies (#148)
Browse files Browse the repository at this point in the history
- awitility 4.2.0
- mockito 4.3.1
- netty 4.1.78
- slf4j 1.7.36
- spring 5.3.21
  • Loading branch information
kpavlov authored Jul 2, 2022
1 parent 18774d7 commit faeaff9
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,30 @@ repositories {
}

dependencies {
val slf4jVersion = "1.7.35"
val awitilityVersion = "4.2.0"
val junitJupiterVersion = "5.8.2"
val mockitoVersion = "4.3.1"
val nettyVersion = "4.1.78.Final"
val slf4jVersion = "1.7.36"
val springVersion = "5.3.21"

implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
api(kotlin("stdlib-jdk8"))
api("com.google.code.findbugs:jsr305:3.0.2")
api("io.netty:netty-handler:$nettyVersion")
api("net.sf.j8583:j8583:1.17.0")
api("io.netty:netty-handler:4.1.73.Final")
api("org.slf4j:slf4j-api:$slf4jVersion")
api("com.google.code.findbugs:jsr305:3.0.2")
testImplementation(kotlin("test-junit5"))
testImplementation("org.junit.jupiter:junit-jupiter-params:$junitJupiterVersion")
testImplementation("org.mockito:mockito-junit-jupiter:4.3.1")
api(kotlin("stdlib-jdk8"))
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
testImplementation("net.jcip:jcip-annotations:1.0")
testImplementation("org.apache.commons:commons-lang3:3.12.0")
testImplementation("org.assertj:assertj-core:3.22.0")
testImplementation(platform("org.springframework:spring-framework-bom:5.3.15"))
testImplementation("org.awaitility:awaitility-kotlin:$awitilityVersion")
testImplementation("org.junit.jupiter:junit-jupiter-params:$junitJupiterVersion")
testImplementation("org.mockito:mockito-junit-jupiter:$mockitoVersion")
testImplementation("org.slf4j:slf4j-simple:$slf4jVersion")
testImplementation("org.springframework:spring-context")
testImplementation("org.springframework:spring-test")
testImplementation("org.slf4j:slf4j-simple:$slf4jVersion")
testImplementation("net.jcip:jcip-annotations:1.0")
testImplementation("org.awaitility:awaitility:4.1.1")
testImplementation(kotlin("test-junit5"))
testImplementation(platform("org.springframework:spring-framework-bom:$springVersion"))
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion")
}

Expand Down

0 comments on commit faeaff9

Please sign in to comment.