You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2022/01/25 17:10:11 UTC

[camel] branch main updated: CAMEL-17550: Use same-version image container f...

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

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


The following commit(s) were added to refs/heads/main by this push:
     new e4f0b72  CAMEL-17550: Use same-version image container f...
e4f0b72 is described below

commit e4f0b728f8f4d558b53593cf042e98058881ff98
Author: Zoran Regvart <zo...@regvart.com>
AuthorDate: Tue Jan 25 18:08:55 2022 +0100

    CAMEL-17550: Use same-version image container f...
    
    ...or Pulsar as client
    
    This makes sure that the version we declare in `camel-parent` via
    `pulsar-version` property is used to define the container image version
    launched by Testcontainer in integration tests.
---
 components/camel-pulsar/pom.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/components/camel-pulsar/pom.xml b/components/camel-pulsar/pom.xml
index 1be0756..29d7636 100644
--- a/components/camel-pulsar/pom.xml
+++ b/components/camel-pulsar/pom.xml
@@ -92,6 +92,9 @@
                     <forkCount>1</forkCount>
                     <reuseForks>true</reuseForks>
                     <forkedProcessTimeoutInSeconds>600</forkedProcessTimeoutInSeconds>
+                    <systemProperties>
+                        <pulsar.container>apachepulsar/pulsar:${pulsar-version}</pulsar.container>
+                    </systemProperties>
                 </configuration>
             </plugin>
         </plugins>