updated dependencies

This commit is contained in:
2026-04-27 14:20:56 +03:00
parent 1c7e05f6a3
commit aad6ba3747
23 changed files with 5 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ plugins {
}
node {
version.set("22.19.0") // версия Node.js
version.set("24.15.0") // версия Node.js
npmVersion.set("11.12.1") // версия npm
download.set(true) // автоматически скачать Node.js
workDir.set(file("${project.projectDir}/.gradle/nodejs"))
@@ -24,7 +24,7 @@ repositories {
mavenCentral()
}
val vertxVersion = "5.0.10"
val vertxVersion = "5.0.11"
val mainVerticleName = "su.xserver.iikocon.MainVerticle"
val launcherClassName = "io.vertx.launcher.application.VertxApplication"
@@ -53,11 +53,11 @@ dependencies {
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
implementation("org.slf4j:slf4j-api:2.0.17")
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j2-impl
implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.25.3")
implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.25.4")
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
implementation("org.apache.logging.log4j:log4j-core:2.25.3")
implementation("org.apache.logging.log4j:log4j-core:2.25.4")
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api
implementation("org.apache.logging.log4j:log4j-api:2.25.3")
implementation("org.apache.logging.log4j:log4j-api:2.25.4")
}