diff --git a/spring-all/pom.xml b/spring-all/pom.xml index 3fb515a0bd6c..3391846d9704 100644 --- a/spring-all/pom.xml +++ b/spring-all/pom.xml @@ -210,21 +210,21 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE - 3.19.0-GA + 4.2.0.RELEASE + 4.0.2.RELEASE + 3.20.0-GA 1.2 - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.12 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -245,7 +245,7 @@ 2.6 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-data-mongodb/.project b/spring-data-mongodb/.project index 7a469b9f7a2c..bfe02478f556 100644 --- a/spring-data-mongodb/.project +++ b/spring-data-mongodb/.project @@ -1,18 +1,29 @@ - spring-data-mongodb - NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. - - - - org.eclipse.jdt.core.javabuilder - - - org.eclipse.m2e.core.maven2Builder - - - - org.eclipse.jdt.core.javanature - org.eclipse.m2e.core.maven2Nature - - \ No newline at end of file + spring-data-mongodb + NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + org.springframework.ide.eclipse.core.springbuilder + + + + + + org.springframework.ide.eclipse.core.springnature + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + + diff --git a/spring-data-mongodb/src/test/java/org/baeldung/mongotemplate/DocumentQueryIntegrationTest.java b/spring-data-mongodb/src/test/java/org/baeldung/mongotemplate/DocumentQueryIntegrationTest.java index 83867dd42352..75077c19cb9e 100644 --- a/spring-data-mongodb/src/test/java/org/baeldung/mongotemplate/DocumentQueryIntegrationTest.java +++ b/spring-data-mongodb/src/test/java/org/baeldung/mongotemplate/DocumentQueryIntegrationTest.java @@ -102,7 +102,7 @@ public void givenUsersExist_whenFindingUserWithNameStartWithA_thenUsersAreFound( query.addCriteria(Criteria.where("name").regex("^A")); List users = mongoTemplate.find(query, User.class); - + assertThat(users.size(), is(2)); } @@ -127,7 +127,7 @@ public void givenUsersExist_whenFindingUserWithNameEndWithC_thenUsersAreFound() query.addCriteria(Criteria.where("name").regex("c$")); List users = mongoTemplate.find(query, User.class); - + assertThat(users.size(), is(1)); } @@ -153,7 +153,7 @@ public void givenUsersExist_whenFindingByPage_thenUsersAreFoundByPage() { query.with(pageableRequest); List users = mongoTemplate.find(query, User.class); - + assertThat(users.size(), is(2)); } @@ -178,11 +178,11 @@ public void givenUsersExist_whenFindingUsersAndSortThem_thenUsersAreFoundAndSort query.with(new Sort(Sort.Direction.ASC, "age")); List users = mongoTemplate.find(query, User.class); - + Iterator iter = users.iterator(); - assertThat(users.size(), is(3)); + assertThat(users.size(), is(3)); assertThat(iter.next().getName(), is("Antony")); assertThat(iter.next().getName(), is("Alice")); - assertThat(iter.next().getName(), is("Eric")); + assertThat(iter.next().getName(), is("Eric")); } } diff --git a/spring-data-mongodb/src/test/java/org/baeldung/repository/QueryMethodsIntegrationTest.java b/spring-data-mongodb/src/test/java/org/baeldung/repository/QueryMethodsIntegrationTest.java index 5bbf779821a1..f7c35c8de2f5 100644 --- a/spring-data-mongodb/src/test/java/org/baeldung/repository/QueryMethodsIntegrationTest.java +++ b/spring-data-mongodb/src/test/java/org/baeldung/repository/QueryMethodsIntegrationTest.java @@ -3,7 +3,6 @@ import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; - import java.util.List; import org.baeldung.config.MongoConfig; @@ -13,7 +12,6 @@ import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; - @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = MongoConfig.class) public class QueryMethodsIntegrationTest extends BaseQueryIntegrationTest { @@ -32,7 +30,7 @@ public void givenUsersExist_whenFindingUsersByName_thenUsersAreFound() { List users = userRepository.findByName("Eric"); assertThat(users.size(), is(1)); } - + @Test public void givenUsersExist_whenFindingUsersWithAgeCreaterThanAndLessThan_thenUsersAreFound() { User user = new User(); @@ -53,7 +51,7 @@ public void givenUsersExist_whenFindingUsersWithAgeCreaterThanAndLessThan_thenUs List users = userRepository.findByAgeBetween(26, 40); assertThat(users.size(), is(1)); } - + @Test public void givenUsersExist_whenFindingUserWithNameStartWithA_thenUsersAreFound() { User user = new User(); @@ -74,7 +72,7 @@ public void givenUsersExist_whenFindingUserWithNameStartWithA_thenUsersAreFound( List users = userRepository.findByNameStartingWith("A"); assertThat(users.size(), is(2)); } - + @Test public void givenUsersExist_whenFindingUserWithNameEndWithC_thenUsersAreFound() { User user = new User(); @@ -93,10 +91,10 @@ public void givenUsersExist_whenFindingUserWithNameEndWithC_thenUsersAreFound() mongoOps.insert(user); List users = userRepository.findByNameEndingWith("c"); - + assertThat(users.size(), is(1)); } - + @Test public void givenUsersExist_whenFindingUsersAndSortThem_thenUsersAreFoundAndSorted() { User user = new User(); @@ -115,8 +113,7 @@ public void givenUsersExist_whenFindingUsersAndSortThem_thenUsersAreFoundAndSort mongoOps.insert(user); List users = userRepository.findByNameLikeOrderByAgeAsc("A"); - + assertThat(users.size(), is(2)); } } - diff --git a/spring-exceptions/.classpath b/spring-exceptions/.classpath index c91caa1b099e..6b533711d3c8 100644 --- a/spring-exceptions/.classpath +++ b/spring-exceptions/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-exceptions/pom.xml b/spring-exceptions/pom.xml index afd4abf4d880..46210f2fa761 100644 --- a/spring-exceptions/pom.xml +++ b/spring-exceptions/pom.xml @@ -203,14 +203,14 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE - 3.19.0-GA + 4.2.0.RELEASE + 4.0.2.RELEASE + 3.20.0-GA 1.2 - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 7.0.42 @@ -218,7 +218,7 @@ 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -240,7 +240,7 @@ 2.6 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-hibernate3/.classpath b/spring-hibernate3/.classpath index 8ebf6d9c3156..5efa587d72eb 100644 --- a/spring-hibernate3/.classpath +++ b/spring-hibernate3/.classpath @@ -29,7 +29,7 @@ - + diff --git a/spring-hibernate3/pom.xml b/spring-hibernate3/pom.xml index eb6aae204c02..653626bab025 100644 --- a/spring-hibernate3/pom.xml +++ b/spring-hibernate3/pom.xml @@ -162,13 +162,13 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE - 3.19.0-GA + 4.2.0.RELEASE + 4.0.2.RELEASE + 3.20.0-GA 3.6.10.Final - 5.1.35 + 5.1.36 7.0.47 @@ -176,7 +176,7 @@ 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -196,7 +196,7 @@ 3.3 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-hibernate4/.classpath b/spring-hibernate4/.classpath index 8b7cba482df7..fa5dbd4c0e30 100644 --- a/spring-hibernate4/.classpath +++ b/spring-hibernate4/.classpath @@ -29,7 +29,7 @@ - + diff --git a/spring-hibernate4/pom.xml b/spring-hibernate4/pom.xml index 65ff14ce9692..0f74e9603ada 100644 --- a/spring-hibernate4/pom.xml +++ b/spring-hibernate4/pom.xml @@ -169,13 +169,13 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE - 3.19.0-GA + 4.2.0.RELEASE + 4.0.2.RELEASE + 3.20.0-GA - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 7.0.42 @@ -183,7 +183,7 @@ 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -203,7 +203,7 @@ 3.3 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-jpa/pom.xml b/spring-jpa/pom.xml index fd8ae12f00aa..b3b08167f1bb 100644 --- a/spring-jpa/pom.xml +++ b/spring-jpa/pom.xml @@ -174,13 +174,13 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE - 3.19.0-GA + 4.2.0.RELEASE + 4.0.2.RELEASE + 3.20.0-GA - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.2.RELEASE @@ -188,7 +188,7 @@ 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -208,7 +208,7 @@ 3.3 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-mvc-java/.classpath b/spring-mvc-java/.classpath index c91caa1b099e..6b533711d3c8 100644 --- a/spring-mvc-java/.classpath +++ b/spring-mvc-java/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-mvc-java/pom.xml b/spring-mvc-java/pom.xml index a171e78dfd4e..20248107a315 100644 --- a/spring-mvc-java/pom.xml +++ b/spring-mvc-java/pom.xml @@ -140,19 +140,19 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.12 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -173,7 +173,7 @@ 2.6 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-mvc-no-xml/.classpath b/spring-mvc-no-xml/.classpath index c91caa1b099e..6b533711d3c8 100644 --- a/spring-mvc-no-xml/.classpath +++ b/spring-mvc-no-xml/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-mvc-no-xml/pom.xml b/spring-mvc-no-xml/pom.xml index ac8d59dfda83..fdaee3b13346 100644 --- a/spring-mvc-no-xml/pom.xml +++ b/spring-mvc-no-xml/pom.xml @@ -144,7 +144,7 @@ - 4.1.6.RELEASE + 4.2.0.RELEASE 1.7.12 @@ -165,7 +165,7 @@ 2.6 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-mvc-xml/.classpath b/spring-mvc-xml/.classpath index c91caa1b099e..6b533711d3c8 100644 --- a/spring-mvc-xml/.classpath +++ b/spring-mvc-xml/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-mvc-xml/pom.xml b/spring-mvc-xml/pom.xml index 407c35070037..6d62927d6345 100644 --- a/spring-mvc-xml/pom.xml +++ b/spring-mvc-xml/pom.xml @@ -146,7 +146,7 @@ - 4.1.6.RELEASE + 4.2.0.RELEASE 1.7.12 @@ -167,7 +167,7 @@ 2.6 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-rest/.settings/org.eclipse.wst.common.project.facet.core.xml b/spring-rest/.settings/org.eclipse.wst.common.project.facet.core.xml index 9ca0d1c1b7e3..b9386231e63d 100644 --- a/spring-rest/.settings/org.eclipse.wst.common.project.facet.core.xml +++ b/spring-rest/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -1,6 +1,8 @@ - - + + + + diff --git a/spring-rest/pom.xml b/spring-rest/pom.xml index f04d04e8ec1c..ceede90c2edb 100644 --- a/spring-rest/pom.xml +++ b/spring-rest/pom.xml @@ -229,19 +229,19 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 2.5.1 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -265,7 +265,7 @@ 3.3 2.6 2.18.1 - 1.4.14 + 1.4.15 diff --git a/spring-security-basic-auth/.classpath b/spring-security-basic-auth/.classpath index 135b02c3d755..5778c9435e7c 100644 --- a/spring-security-basic-auth/.classpath +++ b/spring-security-basic-auth/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-security-basic-auth/pom.xml b/spring-security-basic-auth/pom.xml index d1152329f7dc..754a2c600b98 100644 --- a/spring-security-basic-auth/pom.xml +++ b/spring-security-basic-auth/pom.xml @@ -225,19 +225,19 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.12 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -258,7 +258,7 @@ 2.6 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-security-login-and-registration/.classpath b/spring-security-login-and-registration/.classpath index 1151b0d2572a..91f27076bead 100644 --- a/spring-security-login-and-registration/.classpath +++ b/spring-security-login-and-registration/.classpath @@ -25,7 +25,7 @@ - + diff --git a/spring-security-login-and-registration/pom.xml b/spring-security-login-and-registration/pom.xml index 19d0ae1a2947..0bd539b68cd9 100644 --- a/spring-security-login-and-registration/pom.xml +++ b/spring-security-login-and-registration/pom.xml @@ -217,7 +217,7 @@ 1.7 4.1.6.RELEASE - 3.2.7.RELEASE + 4.0.2.RELEASE 1.7.12 diff --git a/spring-security-mvc-custom/.classpath b/spring-security-mvc-custom/.classpath index 78cd935a51bb..bbfdf4ade50d 100644 --- a/spring-security-mvc-custom/.classpath +++ b/spring-security-mvc-custom/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-security-mvc-custom/pom.xml b/spring-security-mvc-custom/pom.xml index 26d291427a9f..0e620d1d7ad9 100644 --- a/spring-security-mvc-custom/pom.xml +++ b/spring-security-mvc-custom/pom.xml @@ -230,19 +230,19 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.12 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -263,7 +263,7 @@ 2.6 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-security-mvc-digest-auth/.classpath b/spring-security-mvc-digest-auth/.classpath index 78cd935a51bb..bbfdf4ade50d 100644 --- a/spring-security-mvc-digest-auth/.classpath +++ b/spring-security-mvc-digest-auth/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-security-mvc-digest-auth/pom.xml b/spring-security-mvc-digest-auth/pom.xml index 9b132820aba3..f01eccbe2aac 100644 --- a/spring-security-mvc-digest-auth/pom.xml +++ b/spring-security-mvc-digest-auth/pom.xml @@ -225,19 +225,19 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.12 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -258,7 +258,7 @@ 2.6 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-security-mvc-ldap/.classpath b/spring-security-mvc-ldap/.classpath index efcf778ba099..6acf3eeecaeb 100644 --- a/spring-security-mvc-ldap/.classpath +++ b/spring-security-mvc-ldap/.classpath @@ -25,9 +25,10 @@ + - + diff --git a/spring-security-mvc-ldap/pom.xml b/spring-security-mvc-ldap/pom.xml index 28e1f74bbd9e..f20ceef06667 100644 --- a/spring-security-mvc-ldap/pom.xml +++ b/spring-security-mvc-ldap/pom.xml @@ -87,19 +87,19 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.12 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -119,7 +119,7 @@ 3.3 2.6 2.18.1 - 1.4.14 + 1.4.15 diff --git a/spring-security-mvc-login/.classpath b/spring-security-mvc-login/.classpath index 78cd935a51bb..bbfdf4ade50d 100644 --- a/spring-security-mvc-login/.classpath +++ b/spring-security-mvc-login/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-security-mvc-login/pom.xml b/spring-security-mvc-login/pom.xml index b181df8d60ba..17a4df513caa 100644 --- a/spring-security-mvc-login/pom.xml +++ b/spring-security-mvc-login/pom.xml @@ -222,19 +222,19 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.12 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -255,7 +255,7 @@ 2.6 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-security-mvc-session/.classpath b/spring-security-mvc-session/.classpath index 78cd935a51bb..bbfdf4ade50d 100644 --- a/spring-security-mvc-session/.classpath +++ b/spring-security-mvc-session/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-security-mvc-session/pom.xml b/spring-security-mvc-session/pom.xml index 323980074373..be41375f49a3 100644 --- a/spring-security-mvc-session/pom.xml +++ b/spring-security-mvc-session/pom.xml @@ -230,19 +230,19 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.12 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -263,7 +263,7 @@ 2.6 2.18.1 2.7 - 1.4.14 + 1.4.15 diff --git a/spring-security-rest-basic-auth/.classpath b/spring-security-rest-basic-auth/.classpath index 135b02c3d755..5778c9435e7c 100644 --- a/spring-security-rest-basic-auth/.classpath +++ b/spring-security-rest-basic-auth/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-security-rest-basic-auth/pom.xml b/spring-security-rest-basic-auth/pom.xml index 5ce1a622be6d..f59bf5156b5b 100644 --- a/spring-security-rest-basic-auth/pom.xml +++ b/spring-security-rest-basic-auth/pom.xml @@ -287,12 +287,12 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 4.4.1 @@ -303,7 +303,7 @@ 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -320,7 +320,7 @@ 3.3 2.6 2.18.1 - 1.4.14 + 1.4.15 diff --git a/spring-security-rest-custom/.classpath b/spring-security-rest-custom/.classpath index 135b02c3d755..5778c9435e7c 100644 --- a/spring-security-rest-custom/.classpath +++ b/spring-security-rest-custom/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-security-rest-custom/pom.xml b/spring-security-rest-custom/pom.xml index c96deced6d2d..9f756ff09a15 100644 --- a/spring-security-rest-custom/pom.xml +++ b/spring-security-rest-custom/pom.xml @@ -258,19 +258,19 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.12 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -290,7 +290,7 @@ 3.3 2.6 2.18.1 - 1.4.14 + 1.4.15 diff --git a/spring-security-rest-digest-auth/.classpath b/spring-security-rest-digest-auth/.classpath index 135b02c3d755..5778c9435e7c 100644 --- a/spring-security-rest-digest-auth/.classpath +++ b/spring-security-rest-digest-auth/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-security-rest-digest-auth/pom.xml b/spring-security-rest-digest-auth/pom.xml index c4722c2c2ed4..bc5582b78ce3 100644 --- a/spring-security-rest-digest-auth/pom.xml +++ b/spring-security-rest-digest-auth/pom.xml @@ -275,11 +275,11 @@ 4.1.6.RELEASE - 3.2.7.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 4.4.1 @@ -293,7 +293,7 @@ 2.5.1 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -310,7 +310,7 @@ 3.3 2.6 2.18.1 - 1.4.14 + 1.4.15 diff --git a/spring-security-rest-full/pom.xml b/spring-security-rest-full/pom.xml index f86f1a753d41..daa0ed01af94 100644 --- a/spring-security-rest-full/pom.xml +++ b/spring-security-rest-full/pom.xml @@ -413,12 +413,12 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.2.RELEASE @@ -430,7 +430,7 @@ 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -450,7 +450,7 @@ 3.3 2.6 2.18.1 - 1.4.14 + 1.4.15 diff --git a/spring-security-rest/.classpath b/spring-security-rest/.classpath index 135b02c3d755..5778c9435e7c 100644 --- a/spring-security-rest/.classpath +++ b/spring-security-rest/.classpath @@ -30,7 +30,7 @@ - + diff --git a/spring-security-rest/pom.xml b/spring-security-rest/pom.xml index 0661697b2251..1b1f2a23c582 100644 --- a/spring-security-rest/pom.xml +++ b/spring-security-rest/pom.xml @@ -237,19 +237,19 @@ - 4.1.6.RELEASE - 3.2.7.RELEASE + 4.2.0.RELEASE + 4.0.2.RELEASE - 4.3.10.Final - 5.1.35 + 4.3.11.Final + 5.1.36 1.7.12 1.1.3 - 5.1.3.Final + 5.2.1.Final 18.0 @@ -269,7 +269,7 @@ 3.3 2.6 2.18.1 - 1.4.14 + 1.4.15