diff --git a/pom.xml b/pom.xml
index 39803fd9b0..0a8eebda71 100644
--- a/pom.xml
+++ b/pom.xml
@@ -123,17 +123,22 @@
-
- org.junit.jupiter
- junit-jupiter-engine
- ${junit-jupiter.version}
-
-
- org.junit.vintage
- junit-vintage-engine
- ${junit-jupiter.version}
-
-
+
+ org.junit.platform
+ junit-platform-surefire-provider
+ ${junit-platform.version}
+
+
+ org.junit.jupiter
+ junit-jupiter-engine
+ ${junit-jupiter.version}
+
+
+ org.junit.vintage
+ junit-vintage-engine
+ ${junit-jupiter.version}
+
+
org.apache.maven.plugins
@@ -1550,8 +1555,8 @@
1.2
2.9.8
1.3
- 1.4.2
- 5.4.2
+ 1.2.0
+ 5.4.0
0.3.1
2.5.1
0.0.1
diff --git a/spring-boot-flowable/src/main/resources/processes/article-workflow.bpmn20.xml b/spring-boot-flowable/src/main/resources/processes/article-workflow.bpmn20.xml
index 6bf210dcee..77c02f39a4 100644
--- a/spring-boot-flowable/src/main/resources/processes/article-workflow.bpmn20.xml
+++ b/spring-boot-flowable/src/main/resources/processes/article-workflow.bpmn20.xml
@@ -38,12 +38,12 @@
+ flowable:class="com.baeldung.service.PublishArticleService" />
+ flowable:class="com.baeldung.service.SendMailService" />
diff --git a/spring-boot-flowable/src/test/java/com/baeldung/processes/ArticleWorkflowUnitTest.java b/spring-boot-flowable/src/test/java/com/baeldung/processes/ArticleWorkflowIntegrationTest.java
similarity index 90%
rename from spring-boot-flowable/src/test/java/com/baeldung/processes/ArticleWorkflowUnitTest.java
rename to spring-boot-flowable/src/test/java/com/baeldung/processes/ArticleWorkflowIntegrationTest.java
index ef5453623a..7d4557a679 100644
--- a/spring-boot-flowable/src/test/java/com/baeldung/processes/ArticleWorkflowUnitTest.java
+++ b/spring-boot-flowable/src/test/java/com/baeldung/processes/ArticleWorkflowIntegrationTest.java
@@ -13,11 +13,11 @@ import org.flowable.task.api.Task;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.test.context.junit.jupiter.SpringExtension;
+import org.springframework.boot.test.context.SpringBootTest;
@ExtendWith(FlowableSpringExtension.class)
-@ExtendWith(SpringExtension.class)
-public class ArticleWorkflowUnitTest {
+@SpringBootTest
+public class ArticleWorkflowIntegrationTest {
@Autowired
private RuntimeService runtimeService;
@Autowired