update dependencies
This commit is contained in:
parent
b98988201e
commit
a774fed91d
3 changed files with 10 additions and 8 deletions
|
@ -1,3 +1,3 @@
|
|||
group = org.xbib
|
||||
name = netty-http
|
||||
version = 4.1.110.0
|
||||
version = 4.1.119.0
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package org.xbib.netty.http.client.test.cookie;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import org.xbib.netty.http.client.Client;
|
||||
|
@ -14,6 +15,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
|
|||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
@Disabled("httpbin.org is defunct")
|
||||
@ExtendWith(NettyHttpTestExtension.class)
|
||||
class CookieSetterHttpBinTest {
|
||||
|
||||
|
|
|
@ -16,10 +16,10 @@ dependencyResolutionManagement {
|
|||
versionCatalogs {
|
||||
libs {
|
||||
version('gradle', '8.7')
|
||||
version('groovy', '4.0.21')
|
||||
version('groovy', '4.0.26')
|
||||
version('net', '4.8.0')
|
||||
version('netty', '4.1.110.Final')
|
||||
version('netty-tcnative', '2.0.65.Final')
|
||||
version('netty', '4.1.119.Final')
|
||||
version('netty-tcnative', '2.0.70.Final')
|
||||
library('groovy-core', 'org.codehaus.groovy', 'groovy').versionRef('groovy')
|
||||
library('netty-http2', 'io.netty', 'netty-codec-http2').versionRef('netty')
|
||||
library('netty-handler-proxy', 'io.netty', 'netty-handler-proxy').versionRef('netty')
|
||||
|
@ -28,20 +28,20 @@ dependencyResolutionManagement {
|
|||
library('netty-boringssl', 'io.netty', 'netty-tcnative-boringssl-static').versionRef('netty-tcnative')
|
||||
library('bouncycastle', 'org.bouncycastle', 'bcpkix-jdk18on').version('1.78.1')
|
||||
library('conscrypt', 'org.conscrypt', 'conscrypt-openjdk-uber').version('2.5.2')
|
||||
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.17.1')
|
||||
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.18.3')
|
||||
library('javassist', 'org.javassist', 'javassist').version('3.30.2-GA')
|
||||
library('guice', 'org.xbib', 'guice').version('5.0.1.0')
|
||||
library('net', 'org.xbib', 'net').versionRef('net')
|
||||
library('net-path', 'org.xbib', 'net-path').versionRef('net')
|
||||
}
|
||||
testLibs {
|
||||
version('junit', '5.10.2')
|
||||
version('junit', '5.12.0')
|
||||
version('spock', '2.4-M1-groovy-4.0')
|
||||
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.1')
|
||||
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
||||
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.12.0')
|
||||
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('3.0')
|
||||
library('spock-core', 'org.spockframework', 'spock-core').versionRef('spock')
|
||||
library('spock-junit4', 'org.spockframework', 'spock-junit4').versionRef('spock')
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue