update to Gradle 8.5
This commit is contained in:
parent
3dcea0d55f
commit
2623dbfdd8
5 changed files with 8 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
group = org.xbib
|
||||
name = net-http
|
||||
version = 4.0.5
|
||||
version = 4.0.6
|
||||
|
||||
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
|
||||
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
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
|
|
@ -4,6 +4,7 @@ import java.io.IOException;
|
|||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.xbib.net.http.client.netty.HttpRequest;
|
||||
import org.xbib.net.http.client.netty.NettyHttpClient;
|
||||
|
@ -20,6 +21,7 @@ public class AkamaiTest {
|
|||
*
|
||||
* @throws IOException if test fails
|
||||
*/
|
||||
@Disabled("service is shut down")
|
||||
@Test
|
||||
void testAkamai() throws IOException {
|
||||
NettyHttpClientConfig config = new NettyHttpsClientConfig()
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
dependencyResolutionManagement {
|
||||
versionCatalogs {
|
||||
libs {
|
||||
version('gradle', '8.4')
|
||||
version('groovy', '4.0.15')
|
||||
version('gradle', '8.5')
|
||||
version('groovy', '4.0.16')
|
||||
version('netty', '4.1.101.Final')
|
||||
version('netty-tcnative', '2.0.62.Final')
|
||||
version('datastructures', '5.0.5')
|
||||
version('net', '4.0.0')
|
||||
version('net', '4.0.2')
|
||||
library('netty-codec-http2', 'io.netty', 'netty-codec-http2').versionRef('netty')
|
||||
library('netty-handler', 'io.netty', 'netty-handler').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('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.6')
|
||||
library('event', 'org.xbib', 'event').version('0.0.7')
|
||||
}
|
||||
testLibs {
|
||||
version('junit', '5.10.0')
|
||||
|
|
Loading…
Reference in a new issue