2021-02-25 17:01:47 +01:00
|
|
|
apply from: rootProject.file('gradle/compile/groovy.gradle')
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api project(':graphics-pdfbox')
|
|
|
|
api project(':graphics-barcode')
|
2022-02-22 18:04:44 +01:00
|
|
|
api("org.codehaus.groovy:groovy-xml:${project.property('groovy.version')}")
|
2021-02-25 17:01:47 +01:00
|
|
|
// spock need junit vintage
|
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${project.property('junit.version')}"
|
2022-02-22 18:04:44 +01:00
|
|
|
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')}")
|
2021-12-12 22:35:35 +01:00
|
|
|
testImplementation("org.spockframework:spock-core:${project.property('spock.version')}")
|
2021-02-25 17:01:47 +01:00
|
|
|
testImplementation "cglib:cglib-nodep:${project.property('cglib.version')}" // for spock mock
|
|
|
|
testImplementation "org.objenesis:objenesis:${project.property('objenesis.version')}" // for spock mock
|
|
|
|
}
|