You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by al...@apache.org on 2019/06/17 09:41:13 UTC

[camel] branch master updated: CAMEL-13653: Upgraded the consul image to 1.5.1 to avoid using a possibly corrupted image

This is an automated email from the ASF dual-hosted git repository.

aldettinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 2892c30  CAMEL-13653: Upgraded the consul image to 1.5.1 to avoid using a possibly corrupted image
2892c30 is described below

commit 2892c307ea11b221ad223b1cc9554f6584601fa9
Author: aldettinger <al...@gmail.com>
AuthorDate: Mon Jun 17 11:38:55 2019 +0200

    CAMEL-13653: Upgraded the consul image to 1.5.1 to avoid using a possibly corrupted image
---
 .../spring-boot/components-starter/camel-consul-starter/pom.xml      | 5 -----
 .../component/consul/springboot/cloud/ConsulServiceRegistryIT.java   | 2 +-
 2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/platforms/spring-boot/components-starter/camel-consul-starter/pom.xml b/platforms/spring-boot/components-starter/camel-consul-starter/pom.xml
index 16bc835..b3c1b76 100644
--- a/platforms/spring-boot/components-starter/camel-consul-starter/pom.xml
+++ b/platforms/spring-boot/components-starter/camel-consul-starter/pom.xml
@@ -32,30 +32,25 @@
     <dependency>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter</artifactId>
-      <version>${spring-boot-version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-consul</artifactId>
-      <version>${project.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>
       <artifactId>spi-annotations</artifactId>
-      <version>${project.version}</version>
       <scope>provided</scope>
     </dependency>
     <!-- testing -->
     <dependency>
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-jetty</artifactId>
-      <version>${project.version}</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-testcontainers</artifactId>
-      <version>${project.version}</version>
       <scope>test</scope>
     </dependency>
     <!--START OF GENERATED CODE-->
diff --git a/platforms/spring-boot/components-starter/camel-consul-starter/src/test/java/org/apache/camel/component/consul/springboot/cloud/ConsulServiceRegistryIT.java b/platforms/spring-boot/components-starter/camel-consul-starter/src/test/java/org/apache/camel/component/consul/springboot/cloud/ConsulServiceRegistryIT.java
index c74f8ad..ea47a17 100644
--- a/platforms/spring-boot/components-starter/camel-consul-starter/src/test/java/org/apache/camel/component/consul/springboot/cloud/ConsulServiceRegistryIT.java
+++ b/platforms/spring-boot/components-starter/camel-consul-starter/src/test/java/org/apache/camel/component/consul/springboot/cloud/ConsulServiceRegistryIT.java
@@ -46,7 +46,7 @@ public class ConsulServiceRegistryIT {
     private static final int SERVICE_PORT = SocketUtils.findAvailableTcpPort();
 
     @Rule
-    public GenericContainer container = new GenericContainer("consul:1.0.7")
+    public GenericContainer container = new GenericContainer("consul:1.5.1")
         .withExposedPorts(Consul.DEFAULT_HTTP_PORT)
         .waitingFor(Wait.forLogMessageContaining("Synced node info", 1))
         .withLogConsumer(new Slf4jLogConsumer(LOGGER).withPrefix("consul"))