12 lines
309 B
Groovy
12 lines
309 B
Groovy
// Set properties before any plugins get loaded
|
|
project.ext {
|
|
// Execute tests on all JVMs, even rare and outdated ones
|
|
coreJavaInstrumentation = true
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/java.gradle"
|
|
|
|
dependencies {
|
|
testCompile group: 'org.springframework', name: 'spring-web', version: '4.3.7.RELEASE'
|
|
}
|