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 2019/10/03 09:31:35 UTC

[camel] 02/02: Fixed Camel-Avro 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.git

commit 3264e407928f9e3925f03c66b5f075dbc0110ea5
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Oct 3 11:31:07 2019 +0200

    Fixed Camel-Avro Spring Boot Integration test
---
 .../java/org/apache/camel/itest/springboot/CamelAvroTest.java     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAvroTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAvroTest.java
index 5586d39..dafbd3a 100644
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAvroTest.java
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAvroTest.java
@@ -35,10 +35,10 @@ public class CamelAvroTest extends AbstractSpringBootTestSupport {
     public static ITestConfig createTestConfig() {
         return new ITestConfigBuilder()
                 .module(inferModuleName(CamelAvroTest.class))
-                .dependency("org.apache.avro:avro:1.9.0")
-                .dependency("org.apache.avro:avro-ipc:1.9.0")
-                .dependency("org.apache.avro:avro-ipc-jetty:1.9.0")
-                .dependency("org.apache.avro:avro-ipc-netty:1.9.0")
+                .dependency("org.apache.avro:avro:1.9.1")
+                .dependency("org.apache.avro:avro-ipc:1.9.1")
+                .dependency("org.apache.avro:avro-ipc-jetty:1.9.1")
+                .dependency("org.apache.avro:avro-ipc-netty:1.9.1")
                 .build();
     }