update to netty 4.1.98

This commit is contained in:
Jörg Prante 2023-09-27 15:13:49 +02:00
parent 16463a58e2
commit b280485a9e
3 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
group = org.xbib
name = net-http
version = 3.7.1
version = 3.7.2
org.gradle.warning.mode = ALL

View file

@ -10,7 +10,7 @@ dependencies {
implementation libs.webjars.bootstrap
implementation libs.webjars.jquery
implementation libs.webjars.fontawesome
runtimeOnly libs.net.bouncycastle
testRuntimeOnly libs.net.bouncycastle
}
application {

View file

@ -4,11 +4,11 @@ dependencyResolutionManagement {
version('gradle', '8.1.1')
version('junit', '5.10.0')
version('groovy', '4.0.13')
version('netty', '4.1.96.Final')
version('netty', '4.1.98.Final')
version('netty-tcnative', '2.0.61.Final')
version('datastructures', '2.3.1')
version('config', '5.0.3')
version('net', '3.3.3')
version('net', '3.3.4')
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')
@ -20,7 +20,7 @@ dependencyResolutionManagement {
library('netty-epoll', 'io.netty', 'netty-transport-native-epoll').versionRef('netty')
library('netty-kqueue', 'io.netty', 'netty-transport-native-kqueue').versionRef('netty')
library('netty-boringssl', 'io.netty', 'netty-tcnative-boringssl-static').versionRef('netty-tcnative')
library('bouncycastle', 'org.bouncycastle', 'bcpkix-jdk18on').version('1.76')
library('bouncycastle', 'org.bouncycastle', 'bcpkix-jdk18on').version('1.76') // test only
library('conscrypt', 'org.conscrypt', 'conscrypt-openjdk-uber').version('2.5.2')
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.14.2')
library('jna', 'net.java.dev.jna', 'jna').version('5.13.0')
@ -42,7 +42,7 @@ dependencyResolutionManagement {
library('settings-datastructures-yaml', 'org.xbib', 'settings-datastructures-yaml').versionRef('config')
library('jdbc-query', 'org.xbib', 'jdbc-query').version('1.3.0')
library('jdbc-connection-pool', 'org.xbib', 'jdbc-connection-pool').version('1.3.0')
library('event', 'org.xbib', 'event').version('0.0.1')
library('event', 'org.xbib', 'event').version('0.0.2')
}
}
}