You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2021/05/28 10:43:54 UTC

[sling-org-apache-sling-starter] branch master updated: SLING-10402 - add mongo.container.image property for convenience

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

bdelacretaz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-starter.git


The following commit(s) were added to refs/heads/master by this push:
     new 18d5122  SLING-10402 - add mongo.container.image property for convenience
18d5122 is described below

commit 18d512248b6c1637a76085a29b1dbfc32078d6b2
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Fri May 28 12:43:42 2021 +0200

    SLING-10402 - add mongo.container.image property for convenience
---
 pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a691629..9965715 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,6 +51,7 @@
         <!-- skip index generation for all builds except for CI and release -->
         <bnd.index.generation.skip>true</bnd.index.generation.skip>
         <docker.skip>true</docker.skip>
+        <mongo.container.image>mongo:4.4.6</mongo.container.image>
     </properties>
 
     <build>
@@ -235,7 +236,7 @@
                     <images>
                         <image>
                             <alias>mongo</alias>
-                            <name>mongo:4.4.6</name>
+                            <name>${mongo.container.image}</name>
                             <run>
                                 <ports>
                                     <port>${mongo.port}:27017</port>