update jackson to 2.16.0, datastructures to 5.0.6

This commit is contained in:
Jörg Prante 2023-12-17 21:11:26 +01:00
parent 01f1e7beff
commit 560d09a81b
2 changed files with 8 additions and 6 deletions

View file

@ -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

View file

@ -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')
}
}