2023-10-24 10:41:15 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral {
|
|
|
|
metadataSources {
|
|
|
|
mavenPom()
|
|
|
|
artifact()
|
|
|
|
ignoreGradleMetadataRedirection()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-27 16:47:08 +02:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
libs {
|
2024-04-29 15:54:12 +02:00
|
|
|
version('gradle', '8.7')
|
|
|
|
version('groovy', '4.0.21')
|
2024-05-23 15:38:15 +02:00
|
|
|
version('net', '4.5.0')
|
|
|
|
version('netty', '4.1.110.Final')
|
2024-04-29 15:54:12 +02:00
|
|
|
version('netty-tcnative', '2.0.65.Final')
|
2022-05-27 16:47:08 +02:00
|
|
|
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')
|
|
|
|
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')
|
2024-05-23 15:38:15 +02:00
|
|
|
library('bouncycastle', 'org.bouncycastle', 'bcpkix-jdk18on').version('1.78.1')
|
2022-05-27 16:47:08 +02:00
|
|
|
library('conscrypt', 'org.conscrypt', 'conscrypt-openjdk-uber').version('2.5.2')
|
2024-05-23 15:38:15 +02:00
|
|
|
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.17.1')
|
2024-03-27 16:55:45 +01:00
|
|
|
library('javassist', 'org.javassist', 'javassist').version('3.30.2-GA')
|
2023-04-03 17:17:58 +02:00
|
|
|
library('guice', 'org.xbib', 'guice').version('5.0.1.0')
|
2023-10-24 10:41:15 +02:00
|
|
|
library('net', 'org.xbib', 'net').versionRef('net')
|
|
|
|
library('net-path', 'org.xbib', 'net-path').versionRef('net')
|
|
|
|
}
|
|
|
|
testLibs {
|
2024-03-27 16:55:45 +01:00
|
|
|
version('junit', '5.10.2')
|
2023-10-24 10:41:15 +02:00
|
|
|
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')
|
2023-12-18 10:36:20 +01:00
|
|
|
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.1')
|
2023-10-24 10:41:15 +02:00
|
|
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
|
|
|
library('spock-core', 'org.spockframework', 'spock-core').versionRef('spock')
|
|
|
|
library('spock-junit4', 'org.spockframework', 'spock-junit4').versionRef('spock')
|
2022-05-27 16:47:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-12 11:22:40 +01:00
|
|
|
include 'netty-http-common'
|
2019-12-22 02:03:19 +01:00
|
|
|
include 'netty-http-epoll'
|
|
|
|
include 'netty-http-kqueue'
|
|
|
|
include 'netty-http-bouncycastle'
|
2019-09-23 10:02:20 +02:00
|
|
|
include 'netty-http-client-api'
|
2018-03-12 11:22:40 +01:00
|
|
|
include 'netty-http-client'
|
2019-08-07 18:50:42 +02:00
|
|
|
include 'netty-http-client-rest'
|
2019-09-23 10:02:20 +02:00
|
|
|
include 'netty-http-server-api'
|
2018-03-12 11:22:40 +01:00
|
|
|
include 'netty-http-server'
|
2019-07-13 15:16:09 +02:00
|
|
|
include 'netty-http-server-rest'
|