update to Gradle 8.5, update dependencies
This commit is contained in:
parent
f9851b13d4
commit
8bf1083305
4 changed files with 10 additions and 12 deletions
|
@ -1,5 +1,3 @@
|
||||||
group = org.xbib
|
group = org.xbib
|
||||||
name = netty-http
|
name = netty-http
|
||||||
version = 4.1.100.0
|
version = 4.1.101.0
|
||||||
|
|
||||||
org.gradle.warning.mode = ALL
|
|
||||||
|
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,6 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
validateDistributionUrl=true
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
|
|
@ -15,10 +15,10 @@ pluginManagement {
|
||||||
dependencyResolutionManagement {
|
dependencyResolutionManagement {
|
||||||
versionCatalogs {
|
versionCatalogs {
|
||||||
libs {
|
libs {
|
||||||
version('gradle', '8.4')
|
version('gradle', '8.5')
|
||||||
version('groovy', '4.0.15')
|
version('groovy', '4.0.16')
|
||||||
version('net', '4.0.0')
|
version('net', '4.0.3')
|
||||||
version('netty', '4.1.100.Final')
|
version('netty', '4.1.101.Final')
|
||||||
version('netty-tcnative', '2.0.62.Final')
|
version('netty-tcnative', '2.0.62.Final')
|
||||||
library('groovy-core', 'org.codehaus.groovy', 'groovy').versionRef('groovy')
|
library('groovy-core', 'org.codehaus.groovy', 'groovy').versionRef('groovy')
|
||||||
library('netty-http2', 'io.netty', 'netty-codec-http2').versionRef('netty')
|
library('netty-http2', 'io.netty', 'netty-codec-http2').versionRef('netty')
|
||||||
|
@ -26,21 +26,21 @@ dependencyResolutionManagement {
|
||||||
library('netty-epoll', 'io.netty', 'netty-transport-native-epoll').versionRef('netty')
|
library('netty-epoll', 'io.netty', 'netty-transport-native-epoll').versionRef('netty')
|
||||||
library('netty-kqueue', 'io.netty', 'netty-transport-native-kqueue').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('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.77')
|
||||||
library('conscrypt', 'org.conscrypt', 'conscrypt-openjdk-uber').version('2.5.2')
|
library('conscrypt', 'org.conscrypt', 'conscrypt-openjdk-uber').version('2.5.2')
|
||||||
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.15.2')
|
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.16.0')
|
||||||
library('javassist', 'org.javassist', 'javassist').version('3.29.1-GA')
|
library('javassist', 'org.javassist', 'javassist').version('3.29.1-GA')
|
||||||
library('guice', 'org.xbib', 'guice').version('5.0.1.0')
|
library('guice', 'org.xbib', 'guice').version('5.0.1.0')
|
||||||
library('net', 'org.xbib', 'net').versionRef('net')
|
library('net', 'org.xbib', 'net').versionRef('net')
|
||||||
library('net-path', 'org.xbib', 'net-path').versionRef('net')
|
library('net-path', 'org.xbib', 'net-path').versionRef('net')
|
||||||
}
|
}
|
||||||
testLibs {
|
testLibs {
|
||||||
version('junit', '5.10.0')
|
version('junit', '5.10.1')
|
||||||
version('spock', '2.4-M1-groovy-4.0')
|
version('spock', '2.4-M1-groovy-4.0')
|
||||||
library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
|
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-params', 'org.junit.jupiter', 'junit-jupiter-params').versionRef('junit')
|
||||||
library('junit-jupiter-engine', 'org.junit.jupiter', 'junit-jupiter-engine').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')
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
||||||
library('spock-core', 'org.spockframework', 'spock-core').versionRef('spock')
|
library('spock-core', 'org.spockframework', 'spock-core').versionRef('spock')
|
||||||
library('spock-junit4', 'org.spockframework', 'spock-junit4').versionRef('spock')
|
library('spock-junit4', 'org.spockframework', 'spock-junit4').versionRef('spock')
|
||||||
|
|
Loading…
Reference in a new issue