mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-09-08 20:51:41 +00:00
Update to Spring 4.3.1.BUILD-SNAPSHOT
This commit is contained in:
parent
7f3b3a8b59
commit
843ed3e437
@ -27,7 +27,7 @@ allprojects {
|
|||||||
|
|
||||||
ext.releaseBuild = version.endsWith('RELEASE')
|
ext.releaseBuild = version.endsWith('RELEASE')
|
||||||
ext.snapshotBuild = version.endsWith('SNAPSHOT')
|
ext.snapshotBuild = version.endsWith('SNAPSHOT')
|
||||||
ext.springVersion = '4.2.5.RELEASE'
|
ext.springVersion = '4.3.1.BUILD-SNAPSHOT'
|
||||||
ext.springLdapVersion = '2.0.2.RELEASE'
|
ext.springLdapVersion = '2.0.2.RELEASE'
|
||||||
|
|
||||||
group = 'org.springframework.security'
|
group = 'org.springframework.security'
|
||||||
|
@ -17,6 +17,7 @@ package org.springframework.security.core;
|
|||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
import org.springframework.core.SpringVersion;
|
import org.springframework.core.SpringVersion;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -39,7 +40,7 @@ public class SpringSecurityCoreVersion {
|
|||||||
*/
|
*/
|
||||||
public static final long SERIAL_VERSION_UID = 410L;
|
public static final long SERIAL_VERSION_UID = 410L;
|
||||||
|
|
||||||
static final String MIN_SPRING_VERSION = "4.2.5.RELEASE";
|
static final String MIN_SPRING_VERSION = "4.3.1.BUILD-SNAPSHOT";
|
||||||
|
|
||||||
static {
|
static {
|
||||||
performVersionChecks();
|
performVersionChecks();
|
||||||
|
@ -3,3 +3,11 @@ apply plugin: 'spring-boot'
|
|||||||
sonarqube {
|
sonarqube {
|
||||||
skipProject = true
|
skipProject = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
configurations.all {
|
||||||
|
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
|
||||||
|
if (details.requested.group == 'org.springframework') {
|
||||||
|
details.useVersion springVersion
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user