From 560d09a81bf21dc84920f5f247290d9a70394272 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Prante?= Date: Sun, 17 Dec 2023 21:11:26 +0100 Subject: [PATCH] update jackson to 2.16.0, datastructures to 5.0.6 --- gradle.properties | 4 +++- settings.gradle | 10 +++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/gradle.properties b/gradle.properties index db231d2..b3332cf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,7 @@ group = org.xbib name = net -version = 4.0.2 +version = 4.0.3 org.gradle.warning.mode = ALL + +org.gradle.daemon = false diff --git a/settings.gradle b/settings.gradle index b5b6493..4a1c91d 100644 --- a/settings.gradle +++ b/settings.gradle @@ -17,16 +17,16 @@ dependencyResolutionManagement { libs { version('gradle', '8.5') library('bouncycastle', 'org.bouncycastle', 'bcpkix-jdk18on').version('1.77') - library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.15.2') - library('jna', 'net.java.dev.jna', 'jna').version('5.13.0') - library('datastructures-common', 'org.xbib', 'datastructures-common').version('5.0.5') + library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.16.0') + library('jna', 'net.java.dev.jna', 'jna').version('5.14.0') + library('datastructures-common', 'org.xbib', 'datastructures-common').version('5.0.6') } testLibs { - version('junit', '5.10.0') + version('junit', '5.10.1') library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit') library('junit-jupiter-params', 'org.junit.jupiter', 'junit-jupiter-params').versionRef('junit') library('junit-jupiter-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit') - library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.0') + library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.1') library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2') } }