2023-10-01 16:04:07 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral {
|
|
|
|
metadataSources {
|
|
|
|
mavenPom()
|
|
|
|
artifact()
|
|
|
|
ignoreGradleMetadataRedirection()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-29 08:49:45 +02:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
libs {
|
2023-10-19 17:20:01 +02:00
|
|
|
version('gradle', '8.4')
|
2023-10-01 16:04:07 +02:00
|
|
|
version('groovy', '4.0.13')
|
2023-10-04 16:05:15 +02:00
|
|
|
version('datastructures', '5.0.5')
|
2023-10-30 15:34:04 +01:00
|
|
|
version('netty', '4.1.100.Final')
|
2023-10-01 16:04:07 +02:00
|
|
|
version('net', '4.0.0')
|
2023-10-30 15:34:04 +01:00
|
|
|
library('netty-handler', 'io.netty', 'netty-handler').versionRef('netty')
|
2022-08-27 19:02:36 +02:00
|
|
|
library('net', 'org.xbib', 'net').versionRef('net')
|
|
|
|
library('datastructures-common', 'org.xbib', 'datastructures-common').versionRef('datastructures')
|
|
|
|
library('datastructures-json-tiny', 'org.xbib', 'datastructures-json-tiny').versionRef('datastructures')
|
2023-10-04 16:05:15 +02:00
|
|
|
library('settings-api', 'org.xbib', 'settings-api').versionRef('datastructures')
|
|
|
|
library('settings-datastructures-json', 'org.xbib', 'settings-datastructures-json').versionRef('datastructures')
|
2023-10-19 17:20:01 +02:00
|
|
|
library('time', 'org.xbib', 'time').version('4.0.0')
|
2022-07-29 08:49:45 +02:00
|
|
|
library('reactivestreams', 'org.reactivestreams', 'reactive-streams').version('1.0.3')
|
|
|
|
library('rxjava3', 'io.reactivex.rxjava3', 'rxjava').version('3.0.3')
|
|
|
|
}
|
2023-10-24 17:12:10 +02:00
|
|
|
testLibs {
|
|
|
|
version('junit', '5.10.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')
|
|
|
|
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.0')
|
|
|
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
|
|
|
}
|
2022-07-29 08:49:45 +02:00
|
|
|
}
|
|
|
|
}
|