diff --git a/pom.xml b/pom.xml
index 1145d6d..baec0d9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,14 +14,14 @@
org.springframework.boot
spring-boot-starter-parent
- 2.2.1.RELEASE
+ 2.5.5
UTF-8
UTF-8
- 1.8
+ 11
@@ -33,7 +33,10 @@
org.springframework.boot
spring-boot-starter-web
-
+
+ org.springframework.boot
+ spring-boot-starter-validation
+
org.springframework.boot
spring-boot-devtools
diff --git a/src/test/java/com/example/easynotes/EasyNotesApplicationTests.java b/src/test/java/com/example/easynotes/EasyNotesApplicationTests.java
index 4bf539c..298ed22 100644
--- a/src/test/java/com/example/easynotes/EasyNotesApplicationTests.java
+++ b/src/test/java/com/example/easynotes/EasyNotesApplicationTests.java
@@ -1,11 +1,8 @@
package com.example.easynotes;
-import org.junit.Test;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-@RunWith(SpringRunner.class)
@SpringBootTest
public class EasyNotesApplicationTests {