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 2022/01/25 17:31:43 UTC

[camel] branch main created (now e4f0b72)

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

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


      at e4f0b72  CAMEL-17550: Use same-version image container f...

This branch includes the following new commits:

     new e4f0b72  CAMEL-17550: Use same-version image container f...

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[camel] 01/01: CAMEL-17550: Use same-version image container f...

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

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>