Polish Generics and Update Spring Version

We needed to update Spring Version to avoid
https://jira.spring.io/browse/SPR-11471
This commit is contained in:
Rob Winch
2014-09-30 09:07:46 -05:00
parent 6130a10d14
commit 0abbba0309
4 changed files with 13 additions and 7 deletions

View File

@@ -11,7 +11,7 @@ group = 'org.springframework.session'
ext.jstlVersion = '1.2.1'
ext.servletApiVersion = '3.0.1'
ext.springSecurityVersion = '3.2.4.RELEASE'
ext.springVersion = '4.0.2.RELEASE'
ext.springVersion = '4.1.0.RELEASE'
ext.groovyVersion = '2.0.5'
ext.seleniumVersion = '2.33.0'
ext.spockVersion = '0.7-groovy-2.0'
@@ -40,6 +40,13 @@ repositories {
maven { url 'http://clojars.org/repo' }
}
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'org.springframework') {
details.useVersion springVersion
}
}
}
// Integration test setup
configurations {
integrationTestCompile {