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 2021/01/27 07:55:09 UTC

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

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-spring-boot.git


The following commit(s) were added to refs/heads/master by this push:
     new 159f10e  Fixed test for camel-atlasmap
159f10e is described below

commit 159f10e6b7735f3119032aff43a9dffb86e84a03
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jan 27 08:54:39 2021 +0100

    Fixed test for camel-atlasmap
---
 .../test/java/org/apache/camel/itest/springboot/CamelAtlasmapTest.java | 2 ++
 .../org/apache/camel/itest/springboot/util/ArquillianPackager.java     | 3 +++
 2 files changed, 5 insertions(+)

diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAtlasmapTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAtlasmapTest.java
index ccbfde4..d3310c2 100644
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAtlasmapTest.java
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAtlasmapTest.java
@@ -35,6 +35,8 @@ public class CamelAtlasmapTest extends AbstractSpringBootTestSupport {
     public static ITestConfig createTestConfig() {
         return new ITestConfigBuilder()
                 .module(inferModuleName(CamelAtlasmapTest.class))
+                .dependency("org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2")
+                .dependency("org.scala-lang.modules:scala-xml_2.12:1.3.0")
                 .build();
     }
 
diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
index d145569..38e1270 100644
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
@@ -341,6 +341,8 @@ public final class ArquillianPackager {
         ignore.add("net.java.dev.jna:jna-platform"); // PR to spring-boot
         ignore.add("net.openhft");
         ignore.add("org.scala-lang.modules:scala-java8-compat_2.11");
+        ignore.add("org.scala-lang.modules:scala-parser-combinators_2.12");
+        ignore.add("org.scala-lang.modules:scala-xml_2.12");
         ignore.add("net.sourceforge.htmlunit:htmlunit-core-js"); // v 2.21 does not exist
         ignore.add("org.springframework.cloud"); // too many different versions
         ignore.add("org.springframework.data");
@@ -372,6 +374,7 @@ public final class ArquillianPackager {
 
         // google grpc is a mix of all sort of different versions
         ignore.add("com.google.api.grpc");
+       
 
         Map<String, Map<String, String>> status = new TreeMap<>();
         Set<String> mismatches = new TreeSet<>();