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
commit b20e2630b911d4a119415f8fccbc204a878a46e5 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Dec 4 08:01:35 2020 +0100 Fixed BigQuery Tests --- .../apache/camel/itest/springboot/CamelGoogleBigqueryTest.java | 8 ++++++++ .../apache/camel/itest/springboot/util/ArquillianPackager.java | 3 +++ 2 files changed, 11 insertions(+) diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelGoogleBigqueryTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelGoogleBigqueryTest.java index 2543257..7f80418 100644 --- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelGoogleBigqueryTest.java +++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelGoogleBigqueryTest.java @@ -35,6 +35,14 @@ public class CamelGoogleBigqueryTest extends AbstractSpringBootTestSupport { public static ITestConfig createTestConfig() { return new ITestConfigBuilder() .module(inferModuleName(CamelGoogleBigqueryTest.class)) + .dependency("com.google.api:gax:1.60.0") + .dependency("com.google.api:gax-httpjson:0.77.0") + .dependency("com.google.cloud:google-cloud-bigquery:1.124.7") + .dependency("com.google.cloud:google-cloud-core-http:1.93.10") + .dependency("com.google.cloud:google-cloud-core:1.93.10") + .dependency("com.google.http-client:google-http-client-appengine:1.38.0") + .dependency("com.google.http-client:google-http-client-jackson2:1.37.0") + .dependency("com.google.http-client:google-http-client:1.37.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 142459e..d145569 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 @@ -360,6 +360,9 @@ public final class ArquillianPackager { ignore.add("org.sonatype.plexus"); ignore.add("org.sonatype.sisu"); ignore.add("com.healthmarketscience.jackcess"); + ignore.add("com.google.cloud"); + ignore.add("com.google.api"); + ignore.add("com.google.http-client"); // these are from camel-spring-boot and not camel repo so ignore them ignore.add("org.apache.camel:camel-spring-cloud-consul");