2022-11-10 15:27:43 +01:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral {
|
|
|
|
metadataSources {
|
|
|
|
mavenPom()
|
|
|
|
artifact()
|
|
|
|
ignoreGradleMetadataRedirection()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
libs {
|
2023-10-18 10:09:16 +02:00
|
|
|
version('gradle', '8.4')
|
|
|
|
version('junit', '5.10.0')
|
2022-11-10 15:27:43 +01:00
|
|
|
version('junit4', '4.13.2')
|
2023-10-18 10:09:16 +02:00
|
|
|
version('groovy', '4.0.15')
|
2023-04-03 13:47:29 +02:00
|
|
|
version('spock', '2.4-M1-groovy-4.0')
|
2023-10-18 10:09:16 +02:00
|
|
|
version('datastructures', '5.0.5')
|
2022-11-10 15:27:43 +01: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-18 14:51:07 +02:00
|
|
|
library('junit-jupiter-vintage', 'org.junit.vintage', 'junit-vintage-engine').versionRef('junit')
|
2023-10-18 10:09:16 +02:00
|
|
|
library('junit-jupiter-platform-launcher', 'org.junit.platform', 'junit-platform-launcher').version('1.10.0')
|
2022-11-10 15:27:43 +01:00
|
|
|
library('junit4', 'junit', 'junit').versionRef('junit4')
|
|
|
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
|
|
|
library('groovy', 'org.apache.groovy', 'groovy').versionRef('groovy')
|
|
|
|
library('groovy-xml', 'org.apache.groovy', 'groovy-xml').versionRef('groovy')
|
|
|
|
library('groovy-json', 'org.apache.groovy', 'groovy-json').versionRef('groovy')
|
|
|
|
library('groovy-nio', 'org.apache.groovy', 'groovy-nio').versionRef('groovy')
|
|
|
|
library('groovy-sql', 'org.apache.groovy', 'groovy-sql').versionRef('groovy')
|
|
|
|
library('groovy-macro', 'org.apache.groovy', 'groovy-macro').versionRef('groovy')
|
|
|
|
library('groovy-templates', 'org.apache.groovy', 'groovy-templates').versionRef('groovy')
|
2023-09-27 14:38:37 +02:00
|
|
|
library('groovy-test', 'org.apache.groovy', 'groovy-test').versionRef('groovy') // test only
|
|
|
|
library('spock', 'org.spockframework', 'spock-core').versionRef('spock') // test only
|
|
|
|
library('bytebuddy', 'net.bytebuddy', 'byte-buddy').version('1.14.4') // test only
|
|
|
|
library('objenesis', 'org.objenesis', 'objenesis').version('2.6') // test only
|
2023-04-17 09:35:04 +02:00
|
|
|
library('jna', 'net.java.dev.jna', 'jna').version('5.13.0')
|
2023-10-18 14:51:07 +02:00
|
|
|
library('pdfbox', 'org.apache.pdfbox', 'pdfbox').version('4.0.0-SNAPSHOT')
|
2023-09-27 14:38:37 +02:00
|
|
|
library('zxing', 'com.google.zxing', 'javase').version('3.5.2') // test only
|
|
|
|
library('reflections', 'org.reflections', 'reflections').version('0.9.11') // test only
|
|
|
|
library('jfreechart', 'org.jfree', 'jfreechart').version('1.5.2') // test only
|
2023-10-19 18:24:34 +02:00
|
|
|
library('datastructures-settings', 'org.xbib', 'settings-datastructures').versionRef('datastructures')
|
2023-10-18 10:09:16 +02:00
|
|
|
library('datastructures-settings-json', 'org.xbib', 'settings-datastructures-json').versionRef('datastructures')
|
|
|
|
library('datastructures-settings-yaml', 'org.xbib', 'settings-datastructures-yaml').versionRef('datastructures')
|
2022-11-10 15:27:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-24 16:57:48 +01:00
|
|
|
include 'graphics-png'
|
2021-12-16 10:41:32 +01:00
|
|
|
include 'graphics-svg'
|
2021-02-24 16:57:48 +01:00
|
|
|
include 'graphics-vector'
|
|
|
|
include 'graphics-vector-eps'
|
|
|
|
include 'graphics-vector-pdf'
|
|
|
|
include 'graphics-vector-svg'
|
|
|
|
include 'graphics-chart'
|
|
|
|
include 'graphics-barcode'
|
|
|
|
include 'graphics-ghostscript'
|
2021-02-25 17:01:47 +01:00
|
|
|
include 'graphics-pdfbox'
|
|
|
|
include 'graphics-pdfbox-layout'
|
|
|
|
include 'graphics-pdfbox-groovy'
|
2021-03-18 13:49:27 +01:00
|
|
|
include 'graphics-pdfbox-print'
|
2021-03-18 21:23:25 +01:00
|
|
|
include 'graphics-graph-gral'
|