2024-08-05 23:28:21 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral {
|
|
|
|
metadataSources {
|
|
|
|
mavenPom()
|
|
|
|
artifact()
|
|
|
|
ignoreGradleMetadataRedirection()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
libs {
|
|
|
|
version('gradle', '8.7')
|
|
|
|
version('netty', '4.1.112.Final')
|
2024-08-06 13:56:33 +02:00
|
|
|
library('netty-buffer', 'io.netty', 'netty-buffer').versionRef('netty')
|
|
|
|
library('netty-codec', 'io.netty', 'netty-codec').versionRef('netty')
|
|
|
|
library('netty-common', 'io.netty', 'netty-common').versionRef('netty')
|
2024-08-05 23:28:21 +02:00
|
|
|
library('netty-handler', 'io.netty', 'netty-handler').versionRef('netty')
|
2024-08-06 13:56:33 +02:00
|
|
|
library('netty-transport', 'io.netty', 'netty-transport').versionRef('netty')
|
2024-08-05 23:28:21 +02:00
|
|
|
}
|
|
|
|
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'
|
2024-08-06 13:56:33 +02:00
|
|
|
include 'net-ldap-api'
|
2024-08-05 23:28:21 +02:00
|
|
|
include 'net-ldap'
|