You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2021/06/23 16:05:46 UTC

[sling-org-apache-sling-starter] branch master updated: SLING-10496 switch from explicit "ci" profile activation to implicit ones via property "ci"

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

kwin 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 3325782  SLING-10496 switch from explicit "ci" profile activation to implicit ones via property "ci"
3325782 is described below

commit 3325782d542d9ba5e462160df1f9e94937266045
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Wed Jun 23 18:05:36 2021 +0200

    SLING-10496 switch from explicit "ci" profile activation to implicit
    ones via property "ci"
---
 pom.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index ae3cf03..2c39d0e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -395,8 +395,13 @@
             </properties>
         </profile>
         <profile>
-            <!-- enabled during ci builds -->
             <id>ci</id>
+            <!-- enabled during ci builds -->
+            <activation>
+                <property>
+                    <name>ci</name>
+                </property>
+            </activation>
             <properties>
                <bnd.index.generation.skip>false</bnd.index.generation.skip>
                <docker.skip>false</docker.skip>