2022-06-01 10:09:09 +02:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
libs {
|
|
|
|
version('gradle', '7.4.2')
|
|
|
|
version('junit', '5.8.2')
|
|
|
|
version('jackson', '2.12.7')
|
|
|
|
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')
|
|
|
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
|
|
|
library('junit4', 'junit', 'junit').version('4.13.2')
|
|
|
|
library('chronicle-core', 'net.openhft', 'chronicle-core').version('2.21ea14')
|
|
|
|
library('affinity', 'net.openhft', 'affinity').version('3.21ea0')
|
|
|
|
library('jsr305', 'org.xbib', 'jsr-305').version('1.0.0')
|
|
|
|
library('jsr305-v2', 'org.xbib', 'jsr-305').version('2.0.0')
|
|
|
|
library('javassist', 'org.javassist', 'javassist').version('3.28.0-GA')
|
|
|
|
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').versionRef('jackson')
|
|
|
|
library('gson', 'com.google.code.gson', 'gson').version('2.8.9')
|
|
|
|
library('orgjson', 'org.json', 'json').version('20210307')
|
|
|
|
library('jackson-annotations', 'com.fasterxml.jackson.core', 'jackson-annotations').versionRef('jackson')
|
|
|
|
library('jackson-databind', 'com.fasterxml.jackson.core', 'jackson-databind').versionRef('jackson')
|
|
|
|
library('mockito-core', 'org.mockito', 'mockito-core').version('3.12.4')
|
|
|
|
library('google-truth', 'com.google.truth', 'truth').version('0.32')
|
|
|
|
library('burst-junit4', 'com.squareup.burst', 'burst-junit4').version('1.1.1')
|
|
|
|
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')
|
|
|
|
library('jxl', 'net.sourceforge.jexcelapi', 'jxl').version('2.6.12')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-12 11:41:30 +02:00
|
|
|
include 'datastructures-api'
|
2021-04-08 22:36:40 +02:00
|
|
|
include 'datastructures-io'
|
|
|
|
include 'datastructures-bytes'
|
|
|
|
include 'datastructures-charset'
|
2020-09-12 22:42:03 +02:00
|
|
|
include 'datastructures-common'
|
2021-04-08 22:36:40 +02:00
|
|
|
include 'datastructures-xml'
|
|
|
|
include 'datastructures-csv'
|
|
|
|
include 'datastructures-xslx'
|
2021-07-14 11:18:11 +02:00
|
|
|
include 'datastructures-json-dsl'
|
|
|
|
include 'datastructures-json-flat'
|
|
|
|
include 'datastructures-json-iterator'
|
|
|
|
include 'datastructures-json-micro'
|
|
|
|
include 'datastructures-json-minimal'
|
|
|
|
include 'datastructures-json-noggit'
|
|
|
|
include 'datastructures-json-simple'
|
2021-09-21 18:08:31 +02:00
|
|
|
include 'datastructures-queue-tape'
|
2021-10-12 11:41:30 +02:00
|
|
|
include 'datastructures-tiny'
|
|
|
|
include 'datastructures-json-tiny'
|
|
|
|
include 'datastructures-yaml-tiny'
|
2022-04-16 09:19:47 +02:00
|
|
|
include 'datastructures-validation'
|
|
|
|
include 'datastructures-trie'
|
2021-07-14 11:18:11 +02:00
|
|
|
include 'benchmark'
|