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 9fbf9f7 Fixed Camel-Opentelemetry IT test 9fbf9f7 is described below commit 9fbf9f75a18224ff0e165ee8abc53417a1b6c0a6 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Aug 12 17:36:08 2020 +0200 Fixed Camel-Opentelemetry IT test --- .../apache/camel/itest/springboot/CamelOpentelemetryTest.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelOpentelemetryTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelOpentelemetryTest.java index 0c06b37..818e208 100644 --- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelOpentelemetryTest.java +++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelOpentelemetryTest.java @@ -34,6 +34,16 @@ public class CamelOpentelemetryTest extends AbstractSpringBootTestSupport { public static ITestConfig createTestConfig() { return new ITestConfigBuilder() + .dependency("io.grpc:grpc-api:1.30.2") + .dependency("io.grpc:grpc-context:1.30.2") + .dependency("io.grpc:grpc-core:1.30.2") + .dependency("io.grpc:grpc-netty-shaded:1.30.2") + .dependency("io.grpc:grpc-protobuf-lite:1.30.2") + .dependency("io.grpc:grpc-protobuf:1.30.2") + .dependency("io.grpc:grpc-stub:1.30.2") + .dependency("com.google.protobuf:protobuf-java-util:3.12.0") + .dependency("com.google.protobuf:protobuf-java:3.12.0") + .dependency("com.google.protobuf:protobuf-javalite:3.12.0") .module(inferModuleName(CamelOpentelemetryTest.class)) .build(); }