You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/12/02 11:19:27 UTC

[camel] branch master updated: Camel-Jbpm: Fixed Spring Boot Integration test

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new f8e2f8f  Camel-Jbpm: Fixed Spring Boot Integration test
f8e2f8f is described below

commit f8e2f8f663a9ed7d02c65c3f25456a410fec9495
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Dec 2 12:18:47 2019 +0100

    Camel-Jbpm: Fixed Spring Boot Integration test
---
 .../org/apache/camel/itest/springboot/CamelJbpmTest.java     | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelJbpmTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelJbpmTest.java
index 75dcac9..716285e 100644
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelJbpmTest.java
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelJbpmTest.java
@@ -35,12 +35,12 @@ public class CamelJbpmTest extends AbstractSpringBootTestSupport {
     public static ITestConfig createTestConfig() {
         return new ITestConfigBuilder()
                 .module(inferModuleName(CamelJbpmTest.class))
-                .dependency("org.kie:kie-api:7.26.0.Final")
-                .dependency("org.kie:kie-dmn-api:7.26.0.Final")
-                .dependency("org.kie:kie-dmn-model:7.26.0.Final")
-                .dependency("org.kie:kie-internal:7.26.0.Final")
-                .dependency("org.drools:drools-compiler:7.26.0.Final")
-                .dependency("org.drools:drools-core:7.26.0.Final")
+                .dependency("org.kie:kie-api:7.30.0.Final")
+                .dependency("org.kie:kie-dmn-api:7.30.0.Final")
+                .dependency("org.kie:kie-dmn-model:7.30.0.Final")
+                .dependency("org.kie:kie-internal:7.30.0.Final")
+                .dependency("org.drools:drools-compiler:7.30.0.Final")
+                .dependency("org.drools:drools-core:7.30.0.Final")
                 .unitTestExpectedNumber(0)
                 .build();
     }