From 0f546dcb07b135adaab5ec775cded77a8d349fb9 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Thu, 2 Nov 2017 14:53:57 -0500 Subject: [PATCH] Update to Spring 4.3.12 Fixes gh-4776 --- acl/pom.xml | 12 +++++++--- aspects/pom.xml | 12 +++++++--- build.gradle | 2 +- cas/pom.xml | 14 +++++++---- config/pom.xml | 24 ++++++++++++------- core/pom.xml | 10 ++++++-- .../core/SpringSecurityCoreVersion.java | 2 +- crypto/pom.xml | 10 ++++++-- data/pom.xml | 12 +++++++--- itest/context/pom.xml | 16 +++++++++---- itest/web/pom.xml | 20 ++++++++++------ ldap/pom.xml | 12 +++++++--- messaging/pom.xml | 14 +++++++---- openid/pom.xml | 14 +++++++---- remoting/pom.xml | 12 +++++++--- samples/boot/helloworld/pom.xml | 16 +++++++++---- samples/boot/insecure/pom.xml | 10 ++++++-- samples/javaconfig/aspectj/pom.xml | 16 +++++++++---- samples/javaconfig/concurrency/pom.xml | 18 +++++++++----- samples/javaconfig/data/pom.xml | 14 +++++++---- samples/javaconfig/form/pom.xml | 18 +++++++++----- samples/javaconfig/hellojs/pom.xml | 18 +++++++++----- samples/javaconfig/hellomvc/pom.xml | 20 ++++++++++------ samples/javaconfig/helloworld/pom.xml | 14 +++++++---- samples/javaconfig/inmemory/pom.xml | 20 ++++++++++------ samples/javaconfig/jdbc/pom.xml | 18 +++++++++----- samples/javaconfig/ldap/pom.xml | 20 ++++++++++------ samples/javaconfig/messages/pom.xml | 14 +++++++---- samples/javaconfig/openid/pom.xml | 20 ++++++++++------ samples/javaconfig/preauth/pom.xml | 18 +++++++++----- samples/javaconfig/rememberme/pom.xml | 18 +++++++++----- samples/javaconfig/x509/pom.xml | 18 +++++++++----- samples/xml/aspectj/pom.xml | 16 +++++++++---- samples/xml/cas/cassample/pom.xml | 18 +++++++++----- samples/xml/cas/casserver/pom.xml | 10 ++++++-- samples/xml/contacts/pom.xml | 20 ++++++++++------ samples/xml/dms/pom.xml | 16 +++++++++---- samples/xml/gae/pom.xml | 18 +++++++++----- samples/xml/helloworld/pom.xml | 14 +++++++---- samples/xml/insecure/pom.xml | 10 ++++++-- samples/xml/insecuremvc/pom.xml | 12 +++++++--- samples/xml/jaas/pom.xml | 18 +++++++++----- samples/xml/ldap/pom.xml | 18 +++++++++----- samples/xml/openid/pom.xml | 18 +++++++++----- samples/xml/preauth/pom.xml | 14 +++++++---- samples/xml/servletapi/pom.xml | 18 +++++++++----- samples/xml/tutorial/pom.xml | 18 +++++++++----- taglibs/pom.xml | 16 +++++++++---- test/pom.xml | 16 +++++++++---- web/pom.xml | 12 +++++++--- 50 files changed, 523 insertions(+), 235 deletions(-) diff --git a/acl/pom.xml b/acl/pom.xml index 0aee260a5e..43cb3e91b4 100644 --- a/acl/pom.xml +++ b/acl/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-acl - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-acl spring-security-acl http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -51,7 +51,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -151,6 +151,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/aspects/pom.xml b/aspects/pom.xml index d0ea490bb8..1c6477cb5d 100644 --- a/aspects/pom.xml +++ b/aspects/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-aspects - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-aspects spring-security-aspects http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -45,7 +45,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -130,6 +130,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/build.gradle b/build.gradle index 613b44b5b6..3a5347226b 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ allprojects { ext.releaseBuild = version.endsWith('RELEASE') ext.snapshotBuild = version.endsWith('SNAPSHOT') - ext.springVersion = '4.3.9.RELEASE' + ext.springVersion = '4.3.12.RELEASE' ext.springLdapVersion = '2.2.0.RELEASE' group = 'org.springframework.security' diff --git a/cas/pom.xml b/cas/pom.xml index a8166033d7..68ce8a945b 100644 --- a/cas/pom.xml +++ b/cas/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-cas - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-cas spring-security-cas http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -51,13 +51,13 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -155,6 +155,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/config/pom.xml b/config/pom.xml index a5e069aac8..2f227e926a 100644 --- a/config/pom.xml +++ b/config/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-config spring-security-config http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -51,7 +51,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -97,28 +97,28 @@ org.springframework.security spring-security-ldap - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile true org.springframework.security spring-security-messaging - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile true org.springframework.security spring-security-openid - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile true org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile true @@ -365,13 +365,13 @@ org.springframework.security spring-security-aspects - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test org.springframework.security spring-security-cas - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test @@ -390,6 +390,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/core/pom.xml b/core/pom.xml index 70c10ea9fb..ec871c8561 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-core spring-security-core http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -294,6 +294,12 @@ + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/core/src/main/java/org/springframework/security/core/SpringSecurityCoreVersion.java b/core/src/main/java/org/springframework/security/core/SpringSecurityCoreVersion.java index 6a3644a9fe..0413d5374a 100644 --- a/core/src/main/java/org/springframework/security/core/SpringSecurityCoreVersion.java +++ b/core/src/main/java/org/springframework/security/core/SpringSecurityCoreVersion.java @@ -40,7 +40,7 @@ public class SpringSecurityCoreVersion { */ public static final long SERIAL_VERSION_UID = 420L; - static final String MIN_SPRING_VERSION = "4.3.9.RELEASE"; + static final String MIN_SPRING_VERSION = "4.3.12.RELEASE"; static { performVersionChecks(); diff --git a/crypto/pom.xml b/crypto/pom.xml index cf057be454..bad4965b2d 100644 --- a/crypto/pom.xml +++ b/crypto/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-crypto - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-crypto spring-security-crypto http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -92,6 +92,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/data/pom.xml b/data/pom.xml index 08b1cd93bd..8c2ea4c0bc 100644 --- a/data/pom.xml +++ b/data/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-data - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-data spring-security-data http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -51,7 +51,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -108,6 +108,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/itest/context/pom.xml b/itest/context/pom.xml index 600b3660c9..89555addde 100644 --- a/itest/context/pom.xml +++ b/itest/context/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security itest-context - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT itest-context itest-context http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -57,7 +57,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -132,13 +132,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test @@ -152,6 +152,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/itest/web/pom.xml b/itest/web/pom.xml index 5ba50d1976..e59a4852fe 100644 --- a/itest/web/pom.xml +++ b/itest/web/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security itest-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT itest-web itest-web http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -98,31 +98,31 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test org.springframework.security spring-security-ldap - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test org.springframework.security spring-security-test - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test @@ -141,6 +141,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/ldap/pom.xml b/ldap/pom.xml index 8c72f34a5a..bcfd39e845 100644 --- a/ldap/pom.xml +++ b/ldap/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-ldap - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-ldap spring-security-ldap http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -73,7 +73,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -200,6 +200,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/messaging/pom.xml b/messaging/pom.xml index 0d0bc6e96d..b35876009d 100644 --- a/messaging/pom.xml +++ b/messaging/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-messaging - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-messaging spring-security-messaging http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -51,7 +51,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -102,7 +102,7 @@ org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile true @@ -232,6 +232,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/openid/pom.xml b/openid/pom.xml index 7030ab8820..c9987a626b 100644 --- a/openid/pom.xml +++ b/openid/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-openid - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-openid spring-security-openid http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -63,13 +63,13 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -164,6 +164,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/remoting/pom.xml b/remoting/pom.xml index 8e6791335f..5368c68e82 100644 --- a/remoting/pom.xml +++ b/remoting/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-remoting - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-remoting spring-security-remoting http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -51,7 +51,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -123,6 +123,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/boot/helloworld/pom.xml b/samples/boot/helloworld/pom.xml index 3248d43b90..f6529f44e8 100644 --- a/samples/boot/helloworld/pom.xml +++ b/samples/boot/helloworld/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-boot-helloworld - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-samples-boot-helloworld spring-security-samples-boot-helloworld http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -55,13 +55,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -115,7 +115,7 @@ org.springframework.security spring-security-test - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test @@ -124,6 +124,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/boot/insecure/pom.xml b/samples/boot/insecure/pom.xml index 3f20b92fff..ac5707f91b 100644 --- a/samples/boot/insecure/pom.xml +++ b/samples/boot/insecure/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-boot-insecure - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-samples-boot-insecure spring-security-samples-boot-insecure http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -100,6 +100,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/aspectj/pom.xml b/samples/javaconfig/aspectj/pom.xml index 6c6681eee1..d43478489c 100644 --- a/samples/javaconfig/aspectj/pom.xml +++ b/samples/javaconfig/aspectj/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-aspectj - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-samples-javaconfig-aspectj spring-security-samples-javaconfig-aspectj http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -45,13 +45,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -71,7 +71,7 @@ org.springframework.security spring-security-aspects - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -110,6 +110,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/concurrency/pom.xml b/samples/javaconfig/concurrency/pom.xml index a8643e5300..29c90b9cac 100644 --- a/samples/javaconfig/concurrency/pom.xml +++ b/samples/javaconfig/concurrency/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-concurrency - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-concurrency spring-security-samples-javaconfig-concurrency @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -91,25 +91,25 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -183,6 +183,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/data/pom.xml b/samples/javaconfig/data/pom.xml index fed28eca89..9018307ec7 100644 --- a/samples/javaconfig/data/pom.xml +++ b/samples/javaconfig/data/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-data - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-samples-javaconfig-data spring-security-samples-javaconfig-data http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -81,13 +81,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-data - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -133,6 +133,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/form/pom.xml b/samples/javaconfig/form/pom.xml index c630a49346..8124b2e620 100644 --- a/samples/javaconfig/form/pom.xml +++ b/samples/javaconfig/form/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-form - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-form spring-security-samples-javaconfig-form @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -91,25 +91,25 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -237,6 +237,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/hellojs/pom.xml b/samples/javaconfig/hellojs/pom.xml index a2d3dfb232..1171825263 100644 --- a/samples/javaconfig/hellojs/pom.xml +++ b/samples/javaconfig/hellojs/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-hellojs - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-hellojs spring-security-samples-javaconfig-hellojs @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -97,25 +97,25 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -189,6 +189,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/hellomvc/pom.xml b/samples/javaconfig/hellomvc/pom.xml index 7d26bb7d1f..3456b93ea1 100644 --- a/samples/javaconfig/hellomvc/pom.xml +++ b/samples/javaconfig/hellomvc/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-hellomvc - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-hellomvc spring-security-samples-javaconfig-hellomvc @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -91,25 +91,25 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -180,7 +180,7 @@ org.springframework.security spring-security-test - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test @@ -189,6 +189,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/helloworld/pom.xml b/samples/javaconfig/helloworld/pom.xml index dcf447f9a0..3a5f9ae2a1 100644 --- a/samples/javaconfig/helloworld/pom.xml +++ b/samples/javaconfig/helloworld/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-helloworld - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-helloworld spring-security-samples-javaconfig-helloworld @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -67,13 +67,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -179,6 +179,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/inmemory/pom.xml b/samples/javaconfig/inmemory/pom.xml index 9836a7559a..eede1364ab 100644 --- a/samples/javaconfig/inmemory/pom.xml +++ b/samples/javaconfig/inmemory/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-inmemory - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-inmemory spring-security-samples-javaconfig-inmemory @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -91,25 +91,25 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -180,7 +180,7 @@ org.springframework.security spring-security-test - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT test @@ -189,6 +189,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/jdbc/pom.xml b/samples/javaconfig/jdbc/pom.xml index da1a2df59c..287b30ab98 100644 --- a/samples/javaconfig/jdbc/pom.xml +++ b/samples/javaconfig/jdbc/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-jdbc - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-jdbc spring-security-samples-javaconfig-jdbc @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -91,25 +91,25 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -237,6 +237,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/ldap/pom.xml b/samples/javaconfig/ldap/pom.xml index 25057e6871..d81688f671 100644 --- a/samples/javaconfig/ldap/pom.xml +++ b/samples/javaconfig/ldap/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-ldap - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-ldap spring-security-samples-javaconfig-ldap @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -127,31 +127,31 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-ldap - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -279,6 +279,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/messages/pom.xml b/samples/javaconfig/messages/pom.xml index 241d2111d2..3054f25027 100644 --- a/samples/javaconfig/messages/pom.xml +++ b/samples/javaconfig/messages/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-samples-javaconfig-messages spring-security-samples-javaconfig-messages http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -99,13 +99,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -208,6 +208,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/openid/pom.xml b/samples/javaconfig/openid/pom.xml index fdfb452d71..7e851c9045 100644 --- a/samples/javaconfig/openid/pom.xml +++ b/samples/javaconfig/openid/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-openid - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-openid spring-security-samples-javaconfig-openid @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -91,31 +91,31 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-openid - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -195,6 +195,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/preauth/pom.xml b/samples/javaconfig/preauth/pom.xml index 8f2eb57abd..31d9d0f593 100644 --- a/samples/javaconfig/preauth/pom.xml +++ b/samples/javaconfig/preauth/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-preauth - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-preauth spring-security-samples-javaconfig-preauth @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -91,25 +91,25 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -183,6 +183,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/rememberme/pom.xml b/samples/javaconfig/rememberme/pom.xml index 782c386fd1..ef71eef2c8 100644 --- a/samples/javaconfig/rememberme/pom.xml +++ b/samples/javaconfig/rememberme/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-rememberme - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-rememberme spring-security-samples-javaconfig-rememberme @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -91,25 +91,25 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -183,6 +183,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/javaconfig/x509/pom.xml b/samples/javaconfig/x509/pom.xml index c08f4406ce..84bc348f3e 100644 --- a/samples/javaconfig/x509/pom.xml +++ b/samples/javaconfig/x509/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-javaconfig-x509 - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-javaconfig-x509 spring-security-samples-javaconfig-x509 @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -91,25 +91,25 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -183,6 +183,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/aspectj/pom.xml b/samples/xml/aspectj/pom.xml index f3746e2bc7..2362f61dfc 100644 --- a/samples/xml/aspectj/pom.xml +++ b/samples/xml/aspectj/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-aspectj - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-samples-xml-aspectj spring-security-samples-xml-aspectj http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -45,7 +45,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -65,13 +65,13 @@ org.springframework.security spring-security-aspects - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -110,6 +110,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/cas/cassample/pom.xml b/samples/xml/cas/cassample/pom.xml index c7308a6b6d..88ddccb82a 100644 --- a/samples/xml/cas/cassample/pom.xml +++ b/samples/xml/cas/cassample/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-cassample - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-cassample spring-security-samples-xml-cassample @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -55,13 +55,13 @@ org.springframework.security spring-security-cas - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -98,13 +98,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -196,6 +196,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/cas/casserver/pom.xml b/samples/xml/cas/casserver/pom.xml index 42d60f25c6..5d7271dc5e 100644 --- a/samples/xml/cas/casserver/pom.xml +++ b/samples/xml/cas/casserver/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-casserver - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-casserver spring-security-samples-xml-casserver @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -89,6 +89,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/contacts/pom.xml b/samples/xml/contacts/pom.xml index a12941f02a..962ba92aad 100644 --- a/samples/xml/contacts/pom.xml +++ b/samples/xml/contacts/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-contacts - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-contacts spring-security-samples-xml-contacts @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -49,13 +49,13 @@ org.springframework.security spring-security-acl - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -145,19 +145,19 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-taglibs - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -243,6 +243,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/dms/pom.xml b/samples/xml/dms/pom.xml index 8289a9bd6a..686649304b 100644 --- a/samples/xml/dms/pom.xml +++ b/samples/xml/dms/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-dms - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-samples-xml-dms spring-security-samples-xml-dms http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -45,13 +45,13 @@ org.springframework.security spring-security-acl - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -92,7 +92,7 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -141,6 +141,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/gae/pom.xml b/samples/xml/gae/pom.xml index e411fb79df..014954810c 100644 --- a/samples/xml/gae/pom.xml +++ b/samples/xml/gae/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-gae - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-gae spring-security-samples-xml-gae @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -73,13 +73,13 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -147,13 +147,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-taglibs - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -204,6 +204,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/helloworld/pom.xml b/samples/xml/helloworld/pom.xml index 8e969202fe..0ed65f5ae2 100644 --- a/samples/xml/helloworld/pom.xml +++ b/samples/xml/helloworld/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-helloworld - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-helloworld spring-security-samples-xml-helloworld @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -67,13 +67,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -179,6 +179,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/insecure/pom.xml b/samples/xml/insecure/pom.xml index e8ba004aaa..b6bf640f47 100644 --- a/samples/xml/insecure/pom.xml +++ b/samples/xml/insecure/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-insecure - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-insecure spring-security-samples-xml-insecure @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -167,6 +167,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/insecuremvc/pom.xml b/samples/xml/insecuremvc/pom.xml index b51caae0de..8ab0b71500 100644 --- a/samples/xml/insecuremvc/pom.xml +++ b/samples/xml/insecuremvc/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-insecuremvc - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-insecuremvc spring-security-samples-xml-insecuremvc @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -91,7 +91,7 @@ org.springframework.security spring-security-samples-javaconfig-messages - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -165,6 +165,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/jaas/pom.xml b/samples/xml/jaas/pom.xml index 83dfd93adb..2686f83ba8 100644 --- a/samples/xml/jaas/pom.xml +++ b/samples/xml/jaas/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-jaas - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-jaas spring-security-samples-xml-jaas @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -49,7 +49,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -107,19 +107,19 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-taglibs - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -205,6 +205,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/ldap/pom.xml b/samples/xml/ldap/pom.xml index 41d6310e39..859f7e1dd9 100644 --- a/samples/xml/ldap/pom.xml +++ b/samples/xml/ldap/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-ldap - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-ldap spring-security-samples-xml-ldap @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -61,7 +61,7 @@ org.springframework.security spring-security-taglibs - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -128,19 +128,19 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-ldap - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -221,6 +221,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/openid/pom.xml b/samples/xml/openid/pom.xml index 28168c1e60..f5c96b4e87 100644 --- a/samples/xml/openid/pom.xml +++ b/samples/xml/openid/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-openid - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-openid spring-security-samples-xml-openid @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -49,13 +49,13 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-openid - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -103,13 +103,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-taglibs - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -136,6 +136,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/preauth/pom.xml b/samples/xml/preauth/pom.xml index bdc66a3977..cdce2a6a63 100644 --- a/samples/xml/preauth/pom.xml +++ b/samples/xml/preauth/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-preauth - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-preauth spring-security-samples-xml-preauth @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -74,13 +74,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -107,6 +107,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/servletapi/pom.xml b/samples/xml/servletapi/pom.xml index 8e097395d3..791f8db005 100644 --- a/samples/xml/servletapi/pom.xml +++ b/samples/xml/servletapi/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-servletapi - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-servletapi spring-security-samples-xml-servletapi @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -55,13 +55,13 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -118,13 +118,13 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-taglibs - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -156,6 +156,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/samples/xml/tutorial/pom.xml b/samples/xml/tutorial/pom.xml index 3ae4cd54f5..f3f443cdb0 100644 --- a/samples/xml/tutorial/pom.xml +++ b/samples/xml/tutorial/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-samples-xml-tutorial - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT war spring-security-samples-xml-tutorial spring-security-samples-xml-tutorial @@ -39,7 +39,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -55,7 +55,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -119,19 +119,19 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-taglibs - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT runtime @@ -158,6 +158,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/taglibs/pom.xml b/taglibs/pom.xml index 381b8b2b33..57738231f9 100644 --- a/taglibs/pom.xml +++ b/taglibs/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-taglibs - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-taglibs spring-security-taglibs http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -45,19 +45,19 @@ org.springframework.security spring-security-acl - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -187,6 +187,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/test/pom.xml b/test/pom.xml index 79b61237b0..8ef240fdac 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-test - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-test spring-security-test http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -45,13 +45,13 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -80,7 +80,7 @@ org.springframework.security spring-security-config - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile true @@ -173,6 +173,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + + diff --git a/web/pom.xml b/web/pom.xml index 50acc35cc7..fad1fff7f5 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.security spring-security-web - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT spring-security-web spring-security-web http://spring.io/spring-security @@ -35,7 +35,7 @@ org.springframework spring-framework-bom - 4.3.9.RELEASE + 4.3.12.RELEASE pom import @@ -51,7 +51,7 @@ org.springframework.security spring-security-core - 4.2.3.RELEASE + 4.2.4.BUILD-SNAPSHOT compile @@ -249,6 +249,12 @@ test + + + spring-snapshot + https://repo.spring.io/snapshot + +