Update Dependency Versions (#4035)

This commit is contained in:
Rob Winch 2016-08-19 16:09:10 -05:00 committed by GitHub
parent e0d9487e6b
commit 8f1c977c0d
3 changed files with 12 additions and 12 deletions

View File

@ -27,7 +27,7 @@ allprojects {
ext.releaseBuild = version.endsWith('RELEASE')
ext.snapshotBuild = version.endsWith('SNAPSHOT')
ext.springVersion = '4.3.1.RELEASE'
ext.springVersion = '4.3.2.RELEASE'
ext.springLdapVersion = '2.0.2.RELEASE'
group = 'org.springframework.security'

View File

@ -27,8 +27,8 @@ import org.springframework.core.SpringVersion;
* @author Rob Winch
*/
public class SpringSecurityCoreVersion {
private static final String DISABLE_CHECKS = SpringSecurityCoreVersion.class
.getName().concat(".DISABLE_CHECKS");
private static final String DISABLE_CHECKS = SpringSecurityCoreVersion.class.getName()
.concat(".DISABLE_CHECKS");
private static final Log logger = LogFactory.getLog(SpringSecurityCoreVersion.class);
@ -40,7 +40,7 @@ public class SpringSecurityCoreVersion {
*/
public static final long SERIAL_VERSION_UID = 410L;
static final String MIN_SPRING_VERSION = "4.3.1.RELEASE";
static final String MIN_SPRING_VERSION = "4.3.2.RELEASE";
static {
performVersionChecks();
@ -73,8 +73,8 @@ public class SpringSecurityCoreVersion {
}
logger.info("You are running with Spring Security Core " + version);
if (new ComparableVersion(springVersion).compareTo(new ComparableVersion(
minSpringVersion)) < 0) {
if (new ComparableVersion(springVersion)
.compareTo(new ComparableVersion(minSpringVersion)) < 0) {
logger.warn("**** You are advised to use Spring " + minSpringVersion
+ " or later with this version. You are running: " + springVersion);
}

View File

@ -29,12 +29,12 @@ ext.seleniumVersion = '2.44.0'
ext.servletApiVersion = '3.0.1'
ext.slf4jVersion = '1.7.7'
ext.spockVersion = '0.7-groovy-2.0'
ext.springDataCommonsVersion = '1.9.1.RELEASE'
ext.springDataJpaVersion = '1.7.1.RELEASE'
ext.springDataRedisVersion = '1.4.1.RELEASE'
ext.springSessionVersion = '1.0.0.RELEASE'
ext.springBootVersion = '1.3.3.RELEASE'
ext.thymeleafVersion = '2.1.4.RELEASE'
ext.springDataCommonsVersion = '1.12.2.RELEASE'
ext.springDataJpaVersion = '1.10.2.RELEASE'
ext.springDataRedisVersion = '1.7.2.RELEASE'
ext.springSessionVersion = '1.2.1.RELEASE'
ext.springBootVersion = '1.4.0.RELEASE'
ext.thymeleafVersion = '2.1.5.RELEASE'
ext.spockDependencies = [
dependencies.create("org.spockframework:spock-spring:$spockVersion") {