2022-11-07 23:13:54 +01:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral {
|
|
|
|
metadataSources {
|
|
|
|
mavenPom()
|
|
|
|
artifact()
|
|
|
|
ignoreGradleMetadataRedirection()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-04 11:47:14 +02:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
libs {
|
2023-04-25 14:25:29 +02:00
|
|
|
version('gradle', '8.1.1')
|
2023-02-05 17:18:33 +01:00
|
|
|
version('junit', '5.9.2')
|
2023-04-25 14:25:29 +02:00
|
|
|
version('jackson', '2.14.2')
|
|
|
|
version('datastructures', '2.3.0')
|
2022-08-04 11:47:14 +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('junit4', 'junit', 'junit').version('4.13.2')
|
|
|
|
library('hamcrest', 'org.hamcrest:hamcrest-library:2.2')
|
|
|
|
library('jackson-core', 'com.fasterxml.jackson.core', 'jackson-core').versionRef('jackson')
|
|
|
|
library('jackson-databind', 'com.fasterxml.jackson.core', 'jackson-databind').versionRef('jackson')
|
|
|
|
library('jackson-dataformat-smile', 'com.fasterxml.jackson.dataformat', 'jackson-dataformat-smile').versionRef('jackson')
|
|
|
|
library('jackson-dataformat-xml', 'com.fasterxml.jackson.dataformat', 'jackson-dataformat-xml').versionRef('jackson')
|
|
|
|
library('jackson-dataformat-yaml', 'com.fasterxml.jackson.dataformat', 'jackson-dataformat-yaml').versionRef('jackson')
|
|
|
|
library('datastructures-api', 'org.xbib', 'datastructures-api').versionRef('datastructures')
|
|
|
|
library('datastructures-tiny', 'org.xbib', 'datastructures-tiny').versionRef('datastructures')
|
|
|
|
library('datastructures-json-tiny', 'org.xbib', 'datastructures-json-tiny').versionRef('datastructures')
|
|
|
|
library('datastructures-yaml-tiny', 'org.xbib', 'datastructures-yaml-tiny').versionRef('datastructures')
|
|
|
|
library('mockito-core', 'org.mockito', 'mockito-core').version('4.6.1')
|
|
|
|
library('mockito-inline', 'org.mockito', 'mockito-inline').version('4.6.1')
|
2023-04-25 14:25:29 +02:00
|
|
|
library('net', 'org.xbib', 'net').version('3.2.0')
|
2022-08-04 11:47:14 +02:00
|
|
|
library('woodstox', 'com.fasterxml.woodstox', 'woodstox-core').version('6.3.0')
|
2023-04-25 14:25:29 +02:00
|
|
|
library('snakeyaml', 'org.yaml', 'snakeyaml').version('2.0')
|
2022-08-04 11:47:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-05-15 20:03:23 +02:00
|
|
|
include 'content-api'
|
2016-10-03 14:25:26 +02:00
|
|
|
include 'content-core'
|
2021-05-15 20:03:23 +02:00
|
|
|
include 'content-csv'
|
2016-10-03 14:25:26 +02:00
|
|
|
include 'content-language'
|
|
|
|
include 'content-json'
|
2021-05-15 20:03:23 +02:00
|
|
|
include 'content-rdf'
|
|
|
|
include 'content-resource'
|
2016-10-03 14:25:26 +02:00
|
|
|
include 'content-smile'
|
|
|
|
include 'content-xml'
|
2021-05-15 20:03:23 +02:00
|
|
|
include 'content-yaml'
|
2021-10-13 17:32:29 +02:00
|
|
|
include 'settings-api'
|
|
|
|
include 'settings-content'
|
|
|
|
include 'settings-content-json'
|
|
|
|
include 'settings-content-yaml'
|
|
|
|
include 'settings-datastructures'
|
|
|
|
include 'settings-datastructures-json'
|
|
|
|
include 'settings-datastructures-yaml'
|
2021-10-15 11:21:34 +02:00
|
|
|
include 'config'
|