70 lines
4.1 KiB
Groovy
70 lines
4.1 KiB
Groovy
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
libs {
|
|
version('gradle', '8.7')
|
|
version('groovy', '4.0.26')
|
|
version('netty', '4.1.119.Final')
|
|
version('netty-tcnative', '2.0.70.Final')
|
|
version('datastructures', '5.2.3')
|
|
version('net', '4.8.0')
|
|
version('database', '2.3.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')
|
|
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')
|
|
library('conscrypt', 'org.conscrypt', 'conscrypt-openjdk-uber').version('2.5.2')
|
|
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.18.3')
|
|
library('groovy-templates', 'org.apache.groovy', 'groovy-templates').versionRef('groovy')
|
|
library('j2html', 'org.xbib', 'j2html').version('2.0.0')
|
|
library('net', 'org.xbib', 'net').versionRef('net')
|
|
library('net-mime', 'org.xbib', 'net-mime').versionRef('net')
|
|
library('net-security', 'org.xbib', 'net-security').versionRef('net')
|
|
library('net-bouncycastle', 'org.xbib', 'net-bouncycastle').versionRef('net')
|
|
library('datastructures-common', 'org.xbib', 'datastructures-common').versionRef('datastructures')
|
|
library('datastructures-tiny', 'org.xbib', 'datastructures-tiny').versionRef('datastructures')
|
|
library('datastructures-json-tiny', 'org.xbib', 'datastructures-json-tiny').versionRef('datastructures')
|
|
library('datastructures-yaml-tiny', 'org.xbib', 'datastructures-yaml-tiny').versionRef('datastructures')
|
|
library('settings-api', 'org.xbib', 'settings-api').versionRef('datastructures')
|
|
library('config', 'org.xbib', 'config').versionRef('datastructures')
|
|
library('jdbc-query', 'org.xbib', 'jdbc-query').versionRef('database')
|
|
library('jdbc-pool', 'org.xbib', 'jdbc-pool').versionRef('database')
|
|
}
|
|
testLibs {
|
|
version('junit', '5.12.0')
|
|
version('datastructures', '5.2.3')
|
|
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.12.0')
|
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('3.0')
|
|
library('settings-datastructures', 'org.xbib', 'settings-datastructures').versionRef('datastructures')
|
|
library('settings-datastructures-json', 'org.xbib', 'settings-datastructures-json').versionRef('datastructures')
|
|
library('settings-datastructures-yaml', 'org.xbib', 'settings-datastructures-yaml').versionRef('datastructures')
|
|
}
|
|
}
|
|
}
|
|
|
|
include 'net-http'
|
|
include 'net-http-client'
|
|
include 'net-http-client-event-stream'
|
|
include 'net-http-client-simple'
|
|
include 'net-http-client-netty'
|
|
include 'net-http-client-netty-secure'
|
|
include 'net-http-netty-boringssl'
|
|
include 'net-http-netty-conscrypt'
|
|
include 'net-http-netty-epoll'
|
|
include 'net-http-netty-kqueue'
|
|
include 'net-http-server'
|
|
include 'net-http-server-netty'
|
|
include 'net-http-server-netty-secure'
|
|
include 'net-http-server-nio'
|
|
include 'net-http-server-simple'
|
|
include 'net-http-server-simple-secure'
|
|
include 'net-http-template-groovy'
|
|
include 'net-http-j2html'
|
|
include 'net-http-server-application-web'
|
|
include 'net-http-server-application-config'
|
|
include 'net-http-server-application-database'
|
|
include 'net-http-server-application-journal'
|