You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2019/12/26 13:44:55 UTC

[camel-spring-boot] branch master updated: Fixed test

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

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/master by this push:
     new e19a490  Fixed test
e19a490 is described below

commit e19a490d69402da4e0d9bcff72200f6824ad89d6
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Dec 26 14:27:35 2019 +0100

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

diff --git a/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelJbpmTest.java b/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelJbpmTest.java
index 75dcac9..de4237d 100644
--- a/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelJbpmTest.java
+++ b/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.31.0.Final")
+                .dependency("org.kie:kie-dmn-api:7.31.0.Final")
+                .dependency("org.kie:kie-dmn-model:7.31.0.Final")
+                .dependency("org.kie:kie-internal:7.31.0.Final")
+                .dependency("org.drools:drools-compiler:7.31.0.Final")
+                .dependency("org.drools:drools-core:7.31.0.Final")
                 .unitTestExpectedNumber(0)
                 .build();
     }