From b280485a9eea6cabe52360fd5bae307bd862b2e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Prante?= Date: Wed, 27 Sep 2023 15:13:49 +0200 Subject: [PATCH] update to netty 4.1.98 --- gradle.properties | 2 +- net-http-server-application-web/build.gradle | 2 +- settings.gradle | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gradle.properties b/gradle.properties index 69faa76..b7a7093 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group = org.xbib name = net-http -version = 3.7.1 +version = 3.7.2 org.gradle.warning.mode = ALL diff --git a/net-http-server-application-web/build.gradle b/net-http-server-application-web/build.gradle index 8d7f283..b621bbc 100644 --- a/net-http-server-application-web/build.gradle +++ b/net-http-server-application-web/build.gradle @@ -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 { diff --git a/settings.gradle b/settings.gradle index c2311c7..eb215c9 100644 --- a/settings.gradle +++ b/settings.gradle @@ -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') } } }