2022-11-21 09:16:06 +01:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral {
|
|
|
|
metadataSources {
|
|
|
|
mavenPom()
|
|
|
|
artifact()
|
|
|
|
ignoreGradleMetadataRedirection()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-01 10:09:09 +02:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
libs {
|
2024-05-16 16:33:21 +02:00
|
|
|
version('gradle', '8.7')
|
2023-12-12 19:45:37 +01:00
|
|
|
library('chronicle-core', 'net.openhft', 'chronicle-core').version('2.21ea14')
|
|
|
|
library('affinity', 'net.openhft', 'affinity').version('3.21ea0')
|
|
|
|
library('javassist', 'org.javassist', 'javassist').version('3.29.1-GA')
|
|
|
|
library('orgjson', 'org.json', 'json').version('20210307')
|
|
|
|
}
|
|
|
|
testLibs {
|
2024-03-23 21:58:08 +01:00
|
|
|
version('junit', '5.10.2')
|
2024-07-04 14:16:31 +02:00
|
|
|
version('jackson', '2.17.1')
|
2022-06-01 10:09:09 +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')
|
|
|
|
library('junit-vintage-engine', 'org.junit.vintage', 'junit-vintage-engine').versionRef('junit')
|
2023-10-17 12:05:27 +02:00
|
|
|
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.0')
|
2022-06-01 10:09:09 +02:00
|
|
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
|
|
|
library('junit4', 'junit', 'junit').version('4.13.2')
|
2023-12-12 19:45:37 +01:00
|
|
|
library('burst-junit4', 'com.squareup.burst', 'burst-junit4').version('1.1.1')
|
2022-06-01 10:09:09 +02:00
|
|
|
library('mockito-core', 'org.mockito', 'mockito-core').version('3.12.4')
|
|
|
|
library('google-truth', 'com.google.truth', 'truth').version('0.32')
|
|
|
|
library('okio', 'com.squareup.okio', 'okio').version('1.13.0')
|
|
|
|
library('assertj', 'org.assertj', 'assertj-core').version('3.22.0')
|
|
|
|
library('compile-testing', 'com.google.testing.compile', 'compile-testing').version('0.19')
|
2023-12-12 19:45:37 +01:00
|
|
|
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').versionRef('jackson')
|
|
|
|
library('jackson-annotations', 'com.fasterxml.jackson.core', 'jackson-annotations').versionRef('jackson')
|
|
|
|
library('jackson-databind', 'com.fasterxml.jackson.core', 'jackson-databind').versionRef('jackson')
|
|
|
|
library('gson', 'com.google.code.gson', 'gson').version('2.8.9')
|
2022-06-01 10:09:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-06 22:43:14 +01:00
|
|
|
include 'config'
|
2021-10-12 11:41:30 +02:00
|
|
|
include 'datastructures-api'
|
2021-04-08 22:36:40 +02:00
|
|
|
include 'datastructures-charset'
|
2020-09-12 22:42:03 +02:00
|
|
|
include 'datastructures-common'
|
2021-04-08 22:36:40 +02:00
|
|
|
include 'datastructures-csv'
|
2024-03-06 22:43:14 +01:00
|
|
|
include 'datastructures-graphql'
|
|
|
|
include 'datastructures-immutable'
|
|
|
|
include 'datastructures-interpolation'
|
|
|
|
include 'datastructures-io'
|
2021-07-14 11:18:11 +02:00
|
|
|
include 'datastructures-json-dsl'
|
|
|
|
include 'datastructures-json-flat'
|
|
|
|
include 'datastructures-json-iterator'
|
|
|
|
include 'datastructures-json-micro'
|
2022-07-31 01:19:06 +02:00
|
|
|
include 'datastructures-json-mini'
|
2021-07-14 11:18:11 +02:00
|
|
|
include 'datastructures-json-minimal'
|
|
|
|
include 'datastructures-json-noggit'
|
|
|
|
include 'datastructures-json-simple'
|
2024-03-06 22:43:14 +01:00
|
|
|
include 'datastructures-json-tiny'
|
2024-03-23 21:58:08 +01:00
|
|
|
//include 'datastructures-multi'
|
2021-09-21 18:08:31 +02:00
|
|
|
include 'datastructures-queue-tape'
|
2024-03-06 22:43:14 +01:00
|
|
|
include 'datastructures-raml'
|
2021-10-12 11:41:30 +02:00
|
|
|
include 'datastructures-tiny'
|
2022-04-16 09:19:47 +02:00
|
|
|
include 'datastructures-trie'
|
2024-03-06 22:43:14 +01:00
|
|
|
include 'datastructures-validation'
|
|
|
|
include 'datastructures-xml'
|
|
|
|
include 'datastructures-xslx'
|
|
|
|
include 'datastructures-yaml-tiny'
|
2023-10-04 10:12:07 +02:00
|
|
|
include 'settings-api'
|
|
|
|
include 'settings-datastructures'
|
|
|
|
include 'settings-datastructures-json'
|
|
|
|
include 'settings-datastructures-yaml'
|