You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by tj...@apache.org on 2020/09/08 15:27:54 UTC

[felix-dev] branch scrR8 created (now 49599cc)

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

tjwatson pushed a change to branch scrR8
in repository https://gitbox.apache.org/repos/asf/felix-dev.git.


      at 49599cc  Update minor version for OSGi R8 SCR implementation

This branch includes the following new commits:

     new 49599cc  Update minor version for OSGi R8 SCR implementation

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.



[felix-dev] 01/01: Update minor version for OSGi R8 SCR implementation

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

tjwatson pushed a commit to branch scrR8
in repository https://gitbox.apache.org/repos/asf/felix-dev.git

commit 49599cc536671e9158b4f94a9cf970c70f00179b
Author: Thomas Watson <tj...@us.ibm.com>
AuthorDate: Tue Sep 8 09:25:02 2020 -0500

    Update minor version for OSGi R8 SCR implementation
    
    Use snapshots repo for OSGi R8 component 1.5 API.  This is only a
    temporary thing until R8 is released.
---
 scr/pom.xml | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

diff --git a/scr/pom.xml b/scr/pom.xml
index a3c4371..753dc23 100644
--- a/scr/pom.xml
+++ b/scr/pom.xml
@@ -27,17 +27,29 @@
     <packaging>bundle</packaging>
     <name>Apache Felix Declarative Services</name>
     <description>
-        Implementation of the Declarative Services specification 1.4
+        Implementation of the Declarative Services specification 1.5
     </description>
     <artifactId>org.apache.felix.scr</artifactId>
-    <version>2.1.23-SNAPSHOT</version>
+    <version>2.2.0-SNAPSHOT</version>
     <scm>
         <connection>scm:git:https://github.com/apache/felix-dev.git</connection>
         <developerConnection>scm:git:https://github.com/apache/felix-dev.git</developerConnection>
         <url>https://gitbox.apache.org/repos/asf?p=felix-dev.git</url>
       <tag>HEAD</tag>
   </scm>
-    
+
+    <!-- TEMPORARY: use snapshots until R8 compendium is released -->
+    <repositories>
+        <repository>
+            <id>osgi-snapshots</id>
+            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+            <snapshots>
+                <enabled>true</enabled>
+                <updatePolicy>always</updatePolicy>
+            </snapshots>
+        </repository>
+    </repositories>
+
     <!--
         A Note on Testing
         =================
@@ -85,7 +97,7 @@
         <dependency>
             <groupId>org.osgi</groupId>
             <artifactId>org.osgi.service.component</artifactId>
-            <version>1.4.0</version>
+            <version>1.5.0-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>