38 lines
1.8 KiB
Groovy
38 lines
1.8 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral {
|
|
metadataSources {
|
|
mavenPom()
|
|
artifact()
|
|
ignoreGradleMetadataRedirection()
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
libs {
|
|
version('gradle', '8.4')
|
|
version('groovy', '4.0.13')
|
|
version('junit', '5.10.0')
|
|
version('datastructures', '5.0.5')
|
|
version('net', '4.0.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')
|
|
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')
|
|
library('settings-api', 'org.xbib', 'settings-api').versionRef('datastructures')
|
|
library('settings-datastructures-json', 'org.xbib', 'settings-datastructures-json').versionRef('datastructures')
|
|
library('time', 'org.xbib', 'time').version('4.0.0')
|
|
library('reactivestreams', 'org.reactivestreams', 'reactive-streams').version('1.0.3')
|
|
library('rxjava3', 'io.reactivex.rxjava3', 'rxjava').version('3.0.3')
|
|
}
|
|
}
|
|
}
|