diff --git a/core-java-8/pom.xml b/core-java-8/pom.xml
index 7968c26810..1dfa01e513 100644
--- a/core-java-8/pom.xml
+++ b/core-java-8/pom.xml
@@ -127,18 +127,18 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.4
2.3.2
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
+ 2.7
diff --git a/core-java/pom.xml b/core-java/pom.xml
index a96da6761f..d7632e401c 100644
--- a/core-java/pom.xml
+++ b/core-java/pom.xml
@@ -149,7 +149,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -160,7 +160,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
17.0
@@ -169,19 +169,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/core-java/src/test/java/org/baeldung/java/JavaTimerUnitTest.java b/core-java/src/test/java/org/baeldung/java/JavaTimerUnitTest.java
index 3bdedc81bd..086d5b8ffe 100644
--- a/core-java/src/test/java/org/baeldung/java/JavaTimerUnitTest.java
+++ b/core-java/src/test/java/org/baeldung/java/JavaTimerUnitTest.java
@@ -3,6 +3,9 @@ package org.baeldung.java;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
+import java.util.concurrent.Executors;
+import java.util.concurrent.ScheduledExecutorService;
+import java.util.concurrent.TimeUnit;
import org.junit.Test;
@@ -15,11 +18,11 @@ public class JavaTimerUnitTest {
final TimerTask timerTask = new TimerTask() {
@Override
public void run() {
- System.out.println("Task performed on " + new Date() + "\n" + "Thread's name: " + Thread.currentThread().getName());
+ System.out.println("Task performed on: " + new Date() + "\n" + "Thread's name: " + Thread.currentThread().getName());
}
};
-
final Timer timer = new Timer("Timer");
+
final long delay = 1000L;
timer.schedule(timerTask, delay);
@@ -27,4 +30,90 @@ public class JavaTimerUnitTest {
timer.cancel();
}
+ @Test
+ public void givenUsingTimer_whenSchedulingRepeatedTask_thenCorrect() throws InterruptedException {
+ final TimerTask repeatedTask = new TimerTask() {
+ @Override
+ public void run() {
+ System.out.println("Task performed on " + new Date());
+ }
+ };
+ final Timer timer = new Timer("Timer");
+
+ final long delay = 1000L;
+ final long period = 1000L;
+ timer.scheduleAtFixedRate(repeatedTask, delay, period);
+
+ Thread.sleep(delay * 2);
+ timer.cancel();
+ }
+
+ @Test
+ public void givenUsingTimer_whenSchedulingDailyTask_thenCorrect() throws InterruptedException {
+ final TimerTask repeatedTask = new TimerTask() {
+ @Override
+ public void run() {
+ System.out.println("Task performed on " + new Date());
+ }
+ };
+ final Timer timer = new Timer("Timer");
+
+ final long delay = 1000L;
+ final long period = 1000L * 60L * 60L * 24L;
+ timer.scheduleAtFixedRate(repeatedTask, delay, period);
+
+ Thread.sleep(delay * 2);
+ timer.cancel();
+ }
+
+ @Test
+ public void givenUsingTimer_whenCancelingTimerTask_thenCorrect() throws InterruptedException {
+ final TimerTask task = new TimerTask() {
+ @Override
+ public void run() {
+ System.out.println("Task performed on " + new Date());
+ cancel();
+ }
+ };
+ final Timer timer = new Timer("Timer");
+
+ final long delay = 1000L;
+ final long period = 1000L;
+ timer.scheduleAtFixedRate(task, delay, period);
+
+ Thread.sleep(delay * 3);
+ }
+
+ @Test
+ public void givenUsingTimer_whenCancelingTimer_thenCorrect() throws InterruptedException {
+ final TimerTask task = new TimerTask() {
+ @Override
+ public void run() {
+ System.out.println("Task performed on " + new Date());
+ }
+ };
+ final Timer timer = new Timer("Timer");
+
+ timer.scheduleAtFixedRate(task, 1000L, 1000L);
+
+ Thread.sleep(1000L * 2);
+ timer.cancel();
+ }
+
+ @Test
+ public void givenUsingExecutorService_whenSchedulingRepeatedTask_thenCorrect() throws InterruptedException {
+ final TimerTask repeatedTask = new TimerTask() {
+ @Override
+ public void run() {
+ System.out.println("Task performed on " + new Date());
+ }
+ };
+ final ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor();
+ final long delay = 1000L;
+ final long period = 1000L;
+ executor.scheduleAtFixedRate(repeatedTask, delay, period, TimeUnit.MILLISECONDS);
+ Thread.sleep(delay + period * 3);
+ executor.shutdown();
+ }
+
}
diff --git a/gson/pom.xml b/gson/pom.xml
index 827f8a7378..052994528c 100644
--- a/gson/pom.xml
+++ b/gson/pom.xml
@@ -118,7 +118,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -129,7 +129,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -138,19 +138,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/guava/pom.xml b/guava/pom.xml
index 1dfbd626d1..aabdf687e2 100644
--- a/guava/pom.xml
+++ b/guava/pom.xml
@@ -98,7 +98,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -106,7 +106,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -115,19 +115,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/httpclient/pom.xml b/httpclient/pom.xml
index 355dd40ac7..38e8f56dcd 100644
--- a/httpclient/pom.xml
+++ b/httpclient/pom.xml
@@ -153,7 +153,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -161,7 +161,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -170,19 +170,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.4
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/jackson/pom.xml b/jackson/pom.xml
index c08d4863b5..3e7d4515b0 100644
--- a/jackson/pom.xml
+++ b/jackson/pom.xml
@@ -118,7 +118,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -129,7 +129,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -138,19 +138,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/mockito/pom.xml b/mockito/pom.xml
index caa2ceb1a3..0cd4b62612 100644
--- a/mockito/pom.xml
+++ b/mockito/pom.xml
@@ -93,7 +93,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -101,7 +101,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -110,19 +110,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/rest-testing/pom.xml b/rest-testing/pom.xml
index 2385c01260..61addd1a08 100644
--- a/rest-testing/pom.xml
+++ b/rest-testing/pom.xml
@@ -148,7 +148,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -157,19 +157,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/sandbox/pom.xml b/sandbox/pom.xml
index 012016008d..4ff908e7d3 100644
--- a/sandbox/pom.xml
+++ b/sandbox/pom.xml
@@ -137,7 +137,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.29
@@ -148,7 +148,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
16.0.1
@@ -157,18 +157,18 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
+ 2.7
1.4.7
diff --git a/spring-all/pom.xml b/spring-all/pom.xml
index 03e105dc69..5d351a5693 100644
--- a/spring-all/pom.xml
+++ b/spring-all/pom.xml
@@ -197,7 +197,7 @@
1.2
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -205,7 +205,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -214,19 +214,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-exceptions/pom.xml b/spring-exceptions/pom.xml
index f93a0b4c3d..5332b885ae 100644
--- a/spring-exceptions/pom.xml
+++ b/spring-exceptions/pom.xml
@@ -210,7 +210,7 @@
1.2
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
7.0.42
@@ -219,7 +219,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -228,20 +228,20 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
1.8.9
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-hibernate3/pom.xml b/spring-hibernate3/pom.xml
index 3a4fcd2fd5..bb2c9c7cc3 100644
--- a/spring-hibernate3/pom.xml
+++ b/spring-hibernate3/pom.xml
@@ -177,7 +177,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -186,18 +186,18 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
+ 3.2
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-hibernate4/pom.xml b/spring-hibernate4/pom.xml
index 26c6d7ded1..b2b303f325 100644
--- a/spring-hibernate4/pom.xml
+++ b/spring-hibernate4/pom.xml
@@ -175,7 +175,7 @@
3.18.1-GA
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
7.0.42
@@ -184,7 +184,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -193,18 +193,18 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
+ 3.2
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-jpa/pom.xml b/spring-jpa/pom.xml
index c1d19ff0fc..f601b58cb2 100644
--- a/spring-jpa/pom.xml
+++ b/spring-jpa/pom.xml
@@ -174,7 +174,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -182,7 +182,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -191,19 +191,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
+ 3.2
2.17
- 2.6
- 1.4.9
-
+ 2.7
+ 1.4.10
+
diff --git a/spring-mvc-java/pom.xml b/spring-mvc-java/pom.xml
index 1df4984fba..adc2b3e841 100644
--- a/spring-mvc-java/pom.xml
+++ b/spring-mvc-java/pom.xml
@@ -145,7 +145,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -153,7 +153,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -162,19 +162,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-mvc-no-xml/pom.xml b/spring-mvc-no-xml/pom.xml
index 0e772f03dd..492b59e7dd 100644
--- a/spring-mvc-no-xml/pom.xml
+++ b/spring-mvc-no-xml/pom.xml
@@ -154,19 +154,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-mvc-xml/pom.xml b/spring-mvc-xml/pom.xml
index 6537780ea2..23589c0f68 100644
--- a/spring-mvc-xml/pom.xml
+++ b/spring-mvc-xml/pom.xml
@@ -156,19 +156,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-rest/pom.xml b/spring-rest/pom.xml
index ef49fe227a..e2f2c58bbd 100644
--- a/spring-rest/pom.xml
+++ b/spring-rest/pom.xml
@@ -206,7 +206,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -214,7 +214,7 @@
2.4.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -223,22 +223,22 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
1.7.7
1.1.2
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 1.4.9
+ 1.4.10
diff --git a/spring-security-basic-auth/pom.xml b/spring-security-basic-auth/pom.xml
index a1f5f985a9..5a5eca266c 100644
--- a/spring-security-basic-auth/pom.xml
+++ b/spring-security-basic-auth/pom.xml
@@ -230,7 +230,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -238,7 +238,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -247,19 +247,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-security-login-and-registration/.classpath b/spring-security-login-and-registration/.classpath
index 5cd1e45c53..b645d7579b 100644
--- a/spring-security-login-and-registration/.classpath
+++ b/spring-security-login-and-registration/.classpath
@@ -17,18 +17,16 @@
-
+
-
+
-
+
-
-
diff --git a/spring-security-login-and-registration/.project b/spring-security-login-and-registration/.project
index 47dec50119..2c3e86ed06 100644
--- a/spring-security-login-and-registration/.project
+++ b/spring-security-login-and-registration/.project
@@ -30,11 +30,6 @@
-
- org.eclipse.m2e.core.maven2Builder
-
-
-
org.hibernate.eclipse.console.hibernateBuilder
@@ -45,6 +40,11 @@
+
+ org.eclipse.m2e.core.maven2Builder
+
+
+
org.eclipse.jem.workbench.JavaEMFNature
diff --git a/spring-security-mvc-custom/pom.xml b/spring-security-mvc-custom/pom.xml
index 53aa2be09b..5e0d003548 100644
--- a/spring-security-mvc-custom/pom.xml
+++ b/spring-security-mvc-custom/pom.xml
@@ -235,7 +235,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -243,7 +243,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -252,19 +252,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
4.3.5
- 4.3.2
+ 4.3.3
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-security-mvc-digest-auth/pom.xml b/spring-security-mvc-digest-auth/pom.xml
index cf3eadd684..4ccee1b3e0 100644
--- a/spring-security-mvc-digest-auth/pom.xml
+++ b/spring-security-mvc-digest-auth/pom.xml
@@ -230,7 +230,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -238,7 +238,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -247,19 +247,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-security-mvc-login/pom.xml b/spring-security-mvc-login/pom.xml
index b3e5d25934..8d0e019196 100644
--- a/spring-security-mvc-login/pom.xml
+++ b/spring-security-mvc-login/pom.xml
@@ -227,7 +227,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -235,7 +235,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -244,19 +244,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-security-mvc-persisted-remember-me/pom.xml b/spring-security-mvc-persisted-remember-me/pom.xml
index ccc9a289b6..cde52b0022 100644
--- a/spring-security-mvc-persisted-remember-me/pom.xml
+++ b/spring-security-mvc-persisted-remember-me/pom.xml
@@ -264,7 +264,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -272,7 +272,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -281,19 +281,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
4.3.5
- 4.3.2
+ 4.3.3
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-security-mvc-session/pom.xml b/spring-security-mvc-session/pom.xml
index 60620f82de..6961ba208f 100644
--- a/spring-security-mvc-session/pom.xml
+++ b/spring-security-mvc-session/pom.xml
@@ -235,7 +235,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -243,7 +243,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -252,19 +252,19 @@
1.3
4.11
- 1.9.5
+ 1.10.8
4.3.5
- 4.3.2
+ 4.3.3
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 2.6
- 1.4.9
+ 2.7
+ 1.4.10
diff --git a/spring-security-rest-basic-auth/pom.xml b/spring-security-rest-basic-auth/pom.xml
index 0fef185c05..f7d85c06d0 100644
--- a/spring-security-rest-basic-auth/pom.xml
+++ b/spring-security-rest-basic-auth/pom.xml
@@ -291,11 +291,11 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
- 4.3.2
+ 4.3.3
4.3.5
@@ -303,7 +303,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -312,15 +312,15 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 1.4.9
+ 1.4.10
diff --git a/spring-security-rest-custom/pom.xml b/spring-security-rest-custom/pom.xml
index 5551274cfd..72ea90f66e 100644
--- a/spring-security-rest-custom/pom.xml
+++ b/spring-security-rest-custom/pom.xml
@@ -255,7 +255,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -263,7 +263,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -272,18 +272,18 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 1.4.9
+ 1.4.10
diff --git a/spring-security-rest-digest-auth/pom.xml b/spring-security-rest-digest-auth/pom.xml
index e16839db6f..12041ff45f 100644
--- a/spring-security-rest-digest-auth/pom.xml
+++ b/spring-security-rest-digest-auth/pom.xml
@@ -279,11 +279,11 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
- 4.3.2
+ 4.3.3
4.3.5
@@ -294,7 +294,7 @@
2.4.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -303,15 +303,15 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 1.4.9
+ 1.4.10
diff --git a/spring-security-rest-full/.project b/spring-security-rest-full/.project
index 6df4d1d27b..e9390d617f 100644
--- a/spring-security-rest-full/.project
+++ b/spring-security-rest-full/.project
@@ -26,12 +26,12 @@
- org.eclipse.m2e.core.maven2Builder
+ org.hibernate.eclipse.console.hibernateBuilder
- org.hibernate.eclipse.console.hibernateBuilder
+ org.eclipse.m2e.core.maven2Builder
diff --git a/spring-security-rest-full/pom.xml b/spring-security-rest-full/pom.xml
index 557c44d490..2fa16e66dc 100644
--- a/spring-security-rest-full/pom.xml
+++ b/spring-security-rest-full/pom.xml
@@ -379,7 +379,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
1.6.2.RELEASE
@@ -392,7 +392,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -401,18 +401,18 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 1.4.9
+ 1.4.10
diff --git a/spring-security-rest/pom.xml b/spring-security-rest/pom.xml
index 09c15352f1..628fd29729 100644
--- a/spring-security-rest/pom.xml
+++ b/spring-security-rest/pom.xml
@@ -242,7 +242,7 @@
3.2.5.RELEASE
- 4.3.6.Final
+ 4.3.7.Final
5.1.32
@@ -250,7 +250,7 @@
1.1.2
- 5.1.2.Final
+ 5.1.3.Final
18.0
@@ -259,18 +259,18 @@
1.3
4.11
- 1.9.5
+ 1.10.8
- 4.3.2
+ 4.3.3
4.3.5
- 2.3.3
+ 2.3.4
- 3.1
- 2.4
+ 3.2
+ 2.5
2.17
- 1.4.9
+ 1.4.10