Files
spring-ws/spring5-profile.gradle
Greg Turnquist 15c0213373 SWS-967 Add other build profiles
* 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
2016-08-29 10:20:44 -05:00

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' }
}