41 lines
1.7 KiB
Groovy
41 lines
1.7 KiB
Groovy
|
pluginManagement {
|
||
|
repositories {
|
||
|
mavenLocal()
|
||
|
mavenCentral {
|
||
|
metadataSources {
|
||
|
mavenPom()
|
||
|
artifact()
|
||
|
ignoreGradleMetadataRedirection()
|
||
|
}
|
||
|
}
|
||
|
gradlePluginPortal()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencyResolutionManagement {
|
||
|
versionCatalogs {
|
||
|
libs {
|
||
|
version('gradle', '8.7')
|
||
|
version('netty', '4.1.112.Final')
|
||
|
version('netty-tcnative', '2.0.65.Final')
|
||
|
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')
|
||
|
}
|
||
|
testLibs {
|
||
|
version('junit', '5.10.2')
|
||
|
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.10.1')
|
||
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
include 'asn1'
|
||
|
include 'net-ldap'
|