8 lines
435 B
Groovy
8 lines
435 B
Groovy
apply from: rootProject.file('gradle/compile/groovy.gradle')
|
|
|
|
dependencies {
|
|
api "org.eclipse.jgit:org.eclipse.jgit:${project.property('jgit.version')}"
|
|
testImplementation "org.codehaus.groovy:groovy:${project.property('groovy.version')}"
|
|
testImplementation "org.spockframework:spock-core:${project.property('spock.version')}"
|
|
testImplementation "org.spockframework:spock-junit4:${project.property('spock.version')}"
|
|
}
|