reset to Groovy 3.0.9, Java 11
This commit is contained in:
parent
da64b3634b
commit
f6c8d37457
4 changed files with 12 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
||||||
group = org.xbib.graphics
|
group = org.xbib.graphics
|
||||||
name = graphics
|
name = graphics
|
||||||
version = 5.0.0
|
version = 4.2.0
|
||||||
|
|
||||||
org.gradle.warning.mode = ALL
|
org.gradle.warning.mode = ALL
|
||||||
gradle.wrapper.version = 7.3.2
|
gradle.wrapper.version = 7.3.2
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
apply plugin: 'groovy'
|
apply plugin: 'groovy'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "org.apache.groovy:groovy:${project.property('groovy.version')}"
|
implementation "org.codehaus.groovy:groovy:${project.property('groovy.version')}"
|
||||||
}
|
}
|
||||||
|
|
||||||
compileGroovy {
|
compileGroovy {
|
||||||
|
|
|
@ -3,17 +3,17 @@ apply from: rootProject.file('gradle/compile/groovy.gradle')
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':graphics-pdfbox')
|
api project(':graphics-pdfbox')
|
||||||
api project(':graphics-barcode')
|
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
|
// spock need junit vintage
|
||||||
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${project.property('junit.version')}"
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${project.property('junit.version')}"
|
||||||
testImplementation("org.apache.groovy:groovy:${project.property('groovy.version')}")
|
testImplementation("org.codehaus.groovy:groovy:${project.property('groovy.version')}")
|
||||||
testImplementation("org.apache.groovy:groovy-json:${project.property('groovy.version')}")
|
testImplementation("org.codehaus.groovy:groovy-json:${project.property('groovy.version')}")
|
||||||
testImplementation("org.apache.groovy:groovy-nio:${project.property('groovy.version')}")
|
testImplementation("org.codehaus.groovy:groovy-nio:${project.property('groovy.version')}")
|
||||||
testImplementation("org.apache.groovy:groovy-sql:${project.property('groovy.version')}")
|
testImplementation("org.codehaus.groovy:groovy-sql:${project.property('groovy.version')}")
|
||||||
testImplementation("org.apache.groovy:groovy-xml:${project.property('groovy.version')}")
|
testImplementation("org.codehaus.groovy:groovy-xml:${project.property('groovy.version')}")
|
||||||
testImplementation("org.apache.groovy:groovy-macro:${project.property('groovy.version')}")
|
testImplementation("org.codehaus.groovy:groovy-macro:${project.property('groovy.version')}")
|
||||||
testImplementation("org.apache.groovy:groovy-templates:${project.property('groovy.version')}")
|
testImplementation("org.codehaus.groovy:groovy-templates:${project.property('groovy.version')}")
|
||||||
testImplementation("org.apache.groovy:groovy-test:${project.property('groovy.version')}")
|
testImplementation("org.codehaus.groovy:groovy-test:${project.property('groovy.version')}")
|
||||||
testImplementation("org.spockframework:spock-core:${project.property('spock.version')}")
|
testImplementation("org.spockframework:spock-core:${project.property('spock.version')}")
|
||||||
testImplementation "cglib:cglib-nodep:${project.property('cglib.version')}" // for spock mock
|
testImplementation "cglib:cglib-nodep:${project.property('cglib.version')}" // for spock mock
|
||||||
testImplementation "org.objenesis:objenesis:${project.property('objenesis.version')}" // for spock mock
|
testImplementation "org.objenesis:objenesis:${project.property('objenesis.version')}" // for spock mock
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
groovy.version = 4.0.0-rc-2
|
groovy.version = 3.0.9
|
||||||
spock.version = 2.0-groovy-3.0
|
spock.version = 2.0-groovy-3.0
|
||||||
|
|
Loading…
Reference in a new issue