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')}") // 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.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 }