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 2020/03/02 08:36:53 UTC

[camel-spring-boot] branch master updated: Fixed camel-google-pubsub itest

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 dde391e  Fixed camel-google-pubsub itest
dde391e is described below

commit dde391e974b4ffc2d274c1fceef1469783cd94ac
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Mar 2 09:36:38 2020 +0100

    Fixed camel-google-pubsub itest
---
 .../org/apache/camel/itest/springboot/util/ArquillianPackager.java     | 3 +++
 1 file changed, 3 insertions(+)

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 feb31cc..3b7b9a5 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
@@ -358,6 +358,9 @@ public final class ArquillianPackager {
         ignore.add("org.apache.camel:camel-spring-cloud");
         ignore.add("org.apache.camel:camel-spring-boot");
 
+        // 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<>();
         for (MavenResolvedArtifact a : dependencyArtifacts) {