reset to Groovy 3.0.9, Java 11

This commit is contained in:
Jörg Prante 2022-02-22 18:04:44 +01:00 committed by Jörg Prante
parent da64b3634b
commit f6c8d37457
4 changed files with 12 additions and 12 deletions

View file

@ -1,6 +1,6 @@
group = org.xbib.graphics
name = graphics
version = 5.0.0
version = 4.2.0
org.gradle.warning.mode = ALL
gradle.wrapper.version = 7.3.2

View file

@ -1,7 +1,7 @@
apply plugin: 'groovy'
dependencies {
implementation "org.apache.groovy:groovy:${project.property('groovy.version')}"
implementation "org.codehaus.groovy:groovy:${project.property('groovy.version')}"
}
compileGroovy {

View file

@ -3,17 +3,17 @@ apply from: rootProject.file('gradle/compile/groovy.gradle')
dependencies {
api project(':graphics-pdfbox')
api project(':graphics-barcode')
api("org.apache.groovy:groovy-xml:${project.property('groovy.version')}")
api("org.codehaus.groovy:groovy-xml:${project.property('groovy.version')}")
// spock need junit vintage
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${project.property('junit.version')}"
testImplementation("org.apache.groovy:groovy:${project.property('groovy.version')}")
testImplementation("org.apache.groovy:groovy-json:${project.property('groovy.version')}")
testImplementation("org.apache.groovy:groovy-nio:${project.property('groovy.version')}")
testImplementation("org.apache.groovy:groovy-sql:${project.property('groovy.version')}")
testImplementation("org.apache.groovy:groovy-xml:${project.property('groovy.version')}")
testImplementation("org.apache.groovy:groovy-macro:${project.property('groovy.version')}")
testImplementation("org.apache.groovy:groovy-templates:${project.property('groovy.version')}")
testImplementation("org.apache.groovy:groovy-test:${project.property('groovy.version')}")
testImplementation("org.codehaus.groovy:groovy:${project.property('groovy.version')}")
testImplementation("org.codehaus.groovy:groovy-json:${project.property('groovy.version')}")
testImplementation("org.codehaus.groovy:groovy-nio:${project.property('groovy.version')}")
testImplementation("org.codehaus.groovy:groovy-sql:${project.property('groovy.version')}")
testImplementation("org.codehaus.groovy:groovy-xml:${project.property('groovy.version')}")
testImplementation("org.codehaus.groovy:groovy-macro:${project.property('groovy.version')}")
testImplementation("org.codehaus.groovy:groovy-templates:${project.property('groovy.version')}")
testImplementation("org.codehaus.groovy:groovy-test:${project.property('groovy.version')}")
testImplementation("org.spockframework:spock-core:${project.property('spock.version')}")
testImplementation "cglib:cglib-nodep:${project.property('cglib.version')}" // for spock mock
testImplementation "org.objenesis:objenesis:${project.property('objenesis.version')}" // for spock mock

View file

@ -1,2 +1,2 @@
groovy.version = 4.0.0-rc-2
groovy.version = 3.0.9
spock.version = 2.0-groovy-3.0