cql/settings.gradle

35 lines
1.2 KiB
Groovy
Raw Normal View History

2023-05-25 14:03:10 +02:00
pluginManagement {
repositories {
mavenLocal()
mavenCentral {
metadataSources {
mavenPom()
artifact()
ignoreGradleMetadataRedirection()
}
}
gradlePluginPortal()
}
}
2022-10-02 20:40:11 +02:00
dependencyResolutionManagement {
versionCatalogs {
libs {
version('gradle', '8.5')
version('datastructures', '5.0.6')
2023-10-23 17:33:04 +02:00
library('datastructures-json', 'org.xbib', 'datastructures-json-tiny').versionRef('datastructures')
}
testLibs {
version('junit', '5.10.0')
2022-10-02 20:40:11 +02:00
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')
2023-10-23 17:33:04 +02:00
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.0')
2022-10-02 20:40:11 +02:00
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
}
}
}
2023-05-25 14:03:10 +02:00
include 'cql-common'
include 'cql-elasticsearch'