Skip to content

Commit b64af16

Browse files
committed
feat: upgrade dependencies
1 parent 7612958 commit b64af16

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

build.gradle.kts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ val vertxVersion: String by project
44
val gsonVersion: String by project
55
val springContextVersion: String by project
66
val handlebarsVersion: String by project
7-
val log4jVersion = "2.21.1"
7+
val log4jVersion = "2.24.2"
88
val appMainClass = "co.statu.parsek.Main"
99
val pf4jVersion: String by project
1010
val pluginsDir: File? by rootProject.extra
1111

1212
plugins {
13-
kotlin("jvm") version "1.9.20"
14-
kotlin("kapt") version "1.9.20"
13+
kotlin("jvm") version "2.0.21"
14+
kotlin("kapt") version "2.0.21"
1515
id("com.github.johnrengelman.shadow") version "8.1.1"
1616
application
1717
`maven-publish`
@@ -35,8 +35,8 @@ dependencies {
3535
implementation(kotlin("stdlib-jdk8"))
3636
implementation(kotlin("reflect"))
3737

38-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
39-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
38+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.3")
39+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.3")
4040
testImplementation("io.vertx:vertx-unit:$vertxVersion")
4141

4242
implementation("io.vertx:vertx-web:$vertxVersion")
@@ -53,32 +53,32 @@ dependencies {
5353
implementation(group = "org.apache.logging.log4j", name = "log4j-slf4j2-impl", version = log4jVersion)
5454

5555
// https://mvnrepository.com/artifact/commons-codec/commons-codec
56-
implementation(group = "commons-codec", name = "commons-codec", version = "1.16.0")
56+
implementation(group = "commons-codec", name = "commons-codec", version = "1.17.1")
5757

5858
// https://mvnrepository.com/artifact/org.springframework/spring-context
5959
implementation("org.springframework:spring-context:$springContextVersion")
6060

6161
implementation("org.pf4j:pf4j:${pf4jVersion}")
6262

63-
implementation("org.apache.commons:commons-lang3:3.13.0")
63+
implementation("org.apache.commons:commons-lang3:3.17.0")
6464

6565
// https://mvnrepository.com/artifact/org.apache.commons/commons-text
66-
implementation("org.apache.commons:commons-text:1.11.0")
66+
implementation("org.apache.commons:commons-text:1.12.0")
6767

6868
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
69-
implementation("com.fasterxml.jackson.core:jackson-databind:2.16.1")
69+
implementation("com.fasterxml.jackson.core:jackson-databind:2.18.1")
7070

7171
// https://mvnrepository.com/artifact/com.google.code.gson/gson
7272
implementation("com.google.code.gson:gson:$gsonVersion")
7373

7474
// https://mvnrepository.com/artifact/org.ow2.asm/asm
75-
implementation("org.ow2.asm:asm:9.6")
75+
implementation("org.ow2.asm:asm:9.7.1")
7676

7777
// https://mvnrepository.com/artifact/com.github.jknack/handlebars
7878
implementation("com.github.jknack:handlebars:$handlebarsVersion")
7979

8080
// https://mvnrepository.com/artifact/commons-validator/commons-validator
81-
implementation("commons-validator:commons-validator:1.8.0")
81+
implementation("commons-validator:commons-validator:1.9.0")
8282

8383
// https://mvnrepository.com/artifact/com.jcabi/jcabi-manifests
8484
implementation("com.jcabi:jcabi-manifests:2.1.0")

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ org.gradle.parallel=true
44
org.gradle.caching=true
55

66
# PF4J
7-
pf4jVersion=3.12.0
8-
vertxVersion=4.5.10
9-
gsonVersion=2.10.1
10-
handlebarsVersion=4.3.1
11-
springContextVersion=5.3.33
7+
pf4jVersion=3.12.1
8+
vertxVersion=4.5.11
9+
gsonVersion=2.11.0
10+
handlebarsVersion=4.4.0
11+
springContextVersion=5.3.39

0 commit comments

Comments
 (0)