diff --git a/app/build.gradle b/app/build.gradle index 3f580e6f..76f4d6b7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -23,8 +23,8 @@ dependencies { api project(':beacon') compileOnly 'org.hamcrest:hamcrest:2.2' - compileOnly 'org.junit.jupiter:junit-jupiter-api:5.10.2' - compileOnly 'org.junit.jupiter:junit-jupiter-params:5.10.2' + compileOnly 'org.junit.jupiter:junit-jupiter-api:5.10.3' + compileOnly 'org.junit.jupiter:junit-jupiter-params:5.10.3' api 'com.vladsch.flexmark:flexmark:0.64.8' api 'com.vladsch.flexmark:flexmark-util:0.64.8' @@ -52,14 +52,14 @@ dependencies { api files("$rootDir/gradle/gradle_scripts/vernacular-1.16.jar") api 'org.bouncycastle:bcprov-jdk18on:1.78.1' api 'info.picocli:picocli:4.7.6' - api ('org.kohsuke:github-api:1.322') { + api ('org.kohsuke:github-api:1.323') { exclude group: 'org.apache.commons', module: 'commons-lang3' } api 'org.apache.commons:commons-lang3:3.14.0' - api 'io.sentry:sentry:7.10.0' + api 'io.sentry:sentry:7.12.0' api 'commons-io:commons-io:2.16.1' - api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.1" - api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.17.1" + api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.2" + api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.17.2" api group: 'org.kordamp.ikonli', name: 'ikonli-material2-pack', version: "12.2.0" api group: 'org.kordamp.ikonli', name: 'ikonli-materialdesign2-pack', version: "12.2.0" api group: 'org.kordamp.ikonli', name: 'ikonli-javafx', version: "12.2.0" diff --git a/beacon/build.gradle b/beacon/build.gradle index 096dd649..e6a91292 100644 --- a/beacon/build.gradle +++ b/beacon/build.gradle @@ -17,8 +17,8 @@ repositories { dependencies { compileOnly 'org.hamcrest:hamcrest:2.2' - compileOnly 'org.junit.jupiter:junit-jupiter-api:5.10.2' - compileOnly 'org.junit.jupiter:junit-jupiter-params:5.10.2' + compileOnly 'org.junit.jupiter:junit-jupiter-api:5.10.3' + compileOnly 'org.junit.jupiter:junit-jupiter-params:5.10.3' api project(':core') } diff --git a/core/build.gradle b/core/build.gradle index df895257..c8478cb3 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -13,8 +13,8 @@ compileJava { } dependencies { - api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.1" - implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.17.1" + api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.2" + implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.17.2" } version = rootProject.versionString diff --git a/dist/licenses/jackson.properties b/dist/licenses/jackson.properties index f59e60d6..96ea1323 100644 --- a/dist/licenses/jackson.properties +++ b/dist/licenses/jackson.properties @@ -1,4 +1,4 @@ name=Jackson Databind -version=2.17.1 +version=2.17.2 license=Apache License 2.0 link=https://github.com/FasterXML/jackson-databind \ No newline at end of file diff --git a/gradle/gradle_scripts/extension.gradle b/gradle/gradle_scripts/extension.gradle index 86dad230..23e3fb6f 100644 --- a/gradle/gradle_scripts/extension.gradle +++ b/gradle/gradle_scripts/extension.gradle @@ -66,7 +66,7 @@ configurations { } dependencies { - compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.1" + compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.2" compileOnly project(':core') compileOnly project(':beacon') compileOnly project(':app') diff --git a/gradle/gradle_scripts/junit.gradle b/gradle/gradle_scripts/junit.gradle index 0d96ea7a..c9583da3 100644 --- a/gradle/gradle_scripts/junit.gradle +++ b/gradle/gradle_scripts/junit.gradle @@ -2,9 +2,9 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent dependencies { testImplementation 'org.hamcrest:hamcrest:2.2' - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2' - testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.2' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.3' + testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.3' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3' testRuntimeOnly "org.junit.platform:junit-platform-launcher" }