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/06/05 07:06:39 UTC

[camel] branch master updated: Camel-Spark: 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 f535032  Camel-Spark: Fixed Spring Boot Integration test
f535032 is described below

commit f535032ed921ef08fbfbb2d931ae13b0faadfad9
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jun 5 09:06:03 2019 +0200

    Camel-Spark: Fixed Spring Boot Integration test
---
 .../src/test/java/org/apache/camel/itest/springboot/CamelSparkTest.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelSparkTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelSparkTest.java
index f4d3262..25d3e56 100644
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelSparkTest.java
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelSparkTest.java
@@ -35,6 +35,8 @@ public class CamelSparkTest extends AbstractSpringBootTestSupport {
     public static ITestConfig createTestConfig() {
         return new ITestConfigBuilder()
                 .module(inferModuleName(CamelSparkTest.class))
+                .ignoreLibraryMismatch("org.scala-lang.modules:scala-parser-combinators_2.11")
+                .ignoreLibraryMismatch("org.scala-lang.modules:scala-xml_2.11")
                 .build();
     }