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 2020/03/23 15:47:31 UTC

[camel-spring-boot] branch master updated: Fixed Camel-MongoDB 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-spring-boot.git


The following commit(s) were added to refs/heads/master by this push:
     new 7d2a7cd  Fixed Camel-MongoDB Spring Boot integration test
7d2a7cd is described below

commit 7d2a7cd36ff437792205de8c38ba9e6466310ace
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Mar 23 16:46:25 2020 +0100

    Fixed Camel-MongoDB Spring Boot integration test
---
 .../test/java/org/apache/camel/itest/springboot/CamelMongodbTest.java   | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMongodbTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMongodbTest.java
index 5ae7021..c82739d 100644
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMongodbTest.java
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelMongodbTest.java
@@ -35,6 +35,8 @@ public class CamelMongodbTest extends AbstractSpringBootTestSupport {
     public static ITestConfig createTestConfig() {
         return new ITestConfigBuilder()
                 .module(inferModuleName(CamelMongodbTest.class))
+                .dependency("org.mongodb:mongodb-driver-sync:4.0.1")
+                .dependency("org.mongodb:mongodb-driver-core:4.0.1")
                 .includeTestDependencies(false)
                 .unitTestsEnabled(false)
                 .build();