update to Gradle 8.5
This commit is contained in:
parent
8c4a7b871d
commit
760bce37d2
5 changed files with 8 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
||||||
group = org.xbib
|
group = org.xbib
|
||||||
name = net-http
|
name = net-http
|
||||||
version = 4.0.5
|
version = 4.0.6
|
||||||
|
|
||||||
org.gradle.warning.mode = ALL
|
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
|
||||||
|
|
|
@ -4,6 +4,7 @@ import java.io.IOException;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
import org.junit.jupiter.api.Disabled;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.xbib.net.http.client.netty.HttpRequest;
|
import org.xbib.net.http.client.netty.HttpRequest;
|
||||||
import org.xbib.net.http.client.netty.NettyHttpClient;
|
import org.xbib.net.http.client.netty.NettyHttpClient;
|
||||||
|
@ -20,6 +21,7 @@ public class AkamaiTest {
|
||||||
*
|
*
|
||||||
* @throws IOException if test fails
|
* @throws IOException if test fails
|
||||||
*/
|
*/
|
||||||
|
@Disabled("service is shut down")
|
||||||
@Test
|
@Test
|
||||||
void testAkamai() throws IOException {
|
void testAkamai() throws IOException {
|
||||||
NettyHttpClientConfig config = new NettyHttpsClientConfig()
|
NettyHttpClientConfig config = new NettyHttpsClientConfig()
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
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('netty', '4.1.101.Final')
|
version('netty', '4.1.101.Final')
|
||||||
version('netty-tcnative', '2.0.62.Final')
|
version('netty-tcnative', '2.0.62.Final')
|
||||||
version('datastructures', '5.0.5')
|
version('datastructures', '5.0.5')
|
||||||
version('net', '4.0.1')
|
version('net', '4.0.2')
|
||||||
library('netty-codec-http2', 'io.netty', 'netty-codec-http2').versionRef('netty')
|
library('netty-codec-http2', 'io.netty', 'netty-codec-http2').versionRef('netty')
|
||||||
library('netty-handler', 'io.netty', 'netty-handler').versionRef('netty')
|
library('netty-handler', 'io.netty', 'netty-handler').versionRef('netty')
|
||||||
library('netty-handler-proxy', 'io.netty', 'netty-handler-proxy').versionRef('netty')
|
library('netty-handler-proxy', 'io.netty', 'netty-handler-proxy').versionRef('netty')
|
||||||
|
@ -35,7 +35,7 @@ dependencyResolutionManagement {
|
||||||
library('settings-datastructures-yaml', 'org.xbib', 'settings-datastructures-yaml').versionRef('datastructures')
|
library('settings-datastructures-yaml', 'org.xbib', 'settings-datastructures-yaml').versionRef('datastructures')
|
||||||
library('jdbc-query', 'org.xbib', 'jdbc-query').version('1.3.0')
|
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('jdbc-connection-pool', 'org.xbib', 'jdbc-connection-pool').version('1.3.0')
|
||||||
library('event', 'org.xbib', 'event').version('0.0.6')
|
library('event', 'org.xbib', 'event').version('0.0.7')
|
||||||
}
|
}
|
||||||
testLibs {
|
testLibs {
|
||||||
version('junit', '5.10.0')
|
version('junit', '5.10.0')
|
||||||
|
|
Loading…
Reference in a new issue