2022-11-10 15:27:43 +01:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral {
|
|
|
|
metadataSources {
|
|
|
|
mavenPom()
|
|
|
|
artifact()
|
|
|
|
ignoreGradleMetadataRedirection()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
libs {
|
|
|
|
version('gradle', '7.5.1')
|
|
|
|
version('junit', '5.9.1')
|
|
|
|
version('junit4', '4.13.2')
|
|
|
|
version('groovy', '4.0.5')
|
|
|
|
version('spock', '2.2-M1-groovy-4.0')
|
|
|
|
version('content', '5.0.1')
|
|
|
|
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-jupiter-vintage', 'org.junit.vintage', 'junit-vintage-engine').versionRef('junit4')
|
|
|
|
library('junit4', 'junit', 'junit').versionRef('junit4')
|
|
|
|
library('hamcrest', 'org.hamcrest', 'hamcrest-library').version('2.2')
|
|
|
|
library('jna', 'net.java.dev.jna', 'jna').version('5.12.1')
|
|
|
|
library('pdfbox', 'org.apache.pdfbox', 'pdfbox').version('2.0.27')
|
|
|
|
library('zxing', 'com.google.zxing', 'javase').version('3.4.1')
|
|
|
|
library('reflections', 'org.reflections', 'reflections').version('0.9.11')
|
|
|
|
library('jfreechart', 'org.jfree', 'jfreechart').version('1.5.2')
|
|
|
|
library('datastructures-settings', 'org.xbib', 'settings-datastructures')versionRef('content')
|
|
|
|
library('datastructures-settings-json', 'org.xbib', 'settings-datastructures-json').versionRef('content')
|
|
|
|
library('datastructures-settings-yaml', 'org.xbib', 'settings-datastructures-yaml').versionRef('content')
|
|
|
|
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')
|
|
|
|
library('groovy-test', 'org.apache.groovy', 'groovy-test').versionRef('groovy')
|
|
|
|
library('spock', 'org.spockframework', 'spock-core').versionRef('spock')
|
|
|
|
library('cglib', 'cglib', 'cglib-nodep').version('3.3.0')
|
|
|
|
library('objenesis', 'org.objenesis', 'objenesis').version('2.6')
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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'
|