* Make it possible to run the build with different dependencies and different version of JDK * Fix JUnit to make it forward compatible * Fix other things that are deprecated in Spring 4.3 and removed in Spring 5
16 lines
277 B
Groovy
16 lines
277 B
Groovy
/**
|
|
* Enable with "-Pprofile=spring5"
|
|
*/
|
|
|
|
ext.springVersion = "5.0.0.BUILD-SNAPSHOT"
|
|
ext.springSecurityVersion = "4.2.0.BUILD-SNAPSHOT"
|
|
|
|
compileJava {
|
|
sourceCompatibility=1.8
|
|
targetCompatibility=1.8
|
|
}
|
|
|
|
repositories {
|
|
maven { url 'https://repo.spring.io/libs-snapshot' }
|
|
}
|