You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ap...@apache.org on 2022/09/20 14:27:06 UTC

[sling-org-apache-sling-installer-factory-model] branch SLING-11591 created (now 8003d80)

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

apelluru pushed a change to branch SLING-11591
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-model.git


      at 8003d80  SLING-11591: upgrade to sling parent 49

This branch includes the following new commits:

     new 8003d80  SLING-11591: upgrade to sling parent 49

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.



[sling-org-apache-sling-installer-factory-model] 01/01: SLING-11591: upgrade to sling parent 49

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

apelluru pushed a commit to branch SLING-11591
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-model.git

commit 8003d80fa73faa33e10fd8f722a518e826d0edfa
Author: Ashok Pelluru <ap...@apache.org>
AuthorDate: Tue Sep 20 16:23:28 2022 +0200

    SLING-11591: upgrade to sling parent 49
---
 pom.xml | 27 ++++++++++++++-------------
 1 file changed, 14 insertions(+), 13 deletions(-)

diff --git a/pom.xml b/pom.xml
index 26ca96c..573393a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,48 +21,49 @@
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.sling</groupId>
-        <artifactId>sling</artifactId>
-        <version>30</version>
+        <artifactId>sling-bundle-parent</artifactId>
+        <version>49</version>
         <relativePath/>
     </parent>
 
     <artifactId>org.apache.sling.installer.factory.model</artifactId>
     <version>0.1.0-SNAPSHOT</version>
-    <packaging>bundle</packaging>
 
     <name>Apache Sling Installer Provisioning Model Support</name>
     <description> 
         Provides support for the provisioning model to the Apache Sling OSGi installer
     </description>
 
+    <properties>
+        <bnd.baseline.fail.on.missing>false</bnd.baseline.fail.on.missing>
+    </properties>
+
     <scm>
         <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-model.git</connection>
         <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-factory-model.git</developerConnection>
         <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-installer-factory-model.git</url>
     </scm>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <extensions>true</extensions>
-            </plugin>
-        </plugins>
-    </build>
-
     <dependencies>
         <dependency>
             <groupId>org.osgi</groupId>
             <artifactId>osgi.core</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.component.annotations</artifactId>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>javax.jcr</groupId>
             <artifactId>jcr</artifactId>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>