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 2019/02/05 20:13:19 UTC

svn commit: r1853035 - in /felix/trunk/scr: bnd.bnd pom.xml

Author: tjwatson
Date: Tue Feb  5 20:13:19 2019
New Revision: 1853035

URL: http://svn.apache.org/viewvc?rev=1853035&view=rev
Log:
FELIX-6043 - depend on R7 packages for promise and function

Modified:
    felix/trunk/scr/bnd.bnd
    felix/trunk/scr/pom.xml

Modified: felix/trunk/scr/bnd.bnd
URL: http://svn.apache.org/viewvc/felix/trunk/scr/bnd.bnd?rev=1853035&r1=1853034&r2=1853035&view=diff
==============================================================================
--- felix/trunk/scr/bnd.bnd (original)
+++ felix/trunk/scr/bnd.bnd Tue Feb  5 20:13:19 2019
@@ -18,8 +18,8 @@ Export-Package: org.apache.felix.scr.com
  org.osgi.service.component;version=1.4;provide:=true, \
  org.osgi.service.component.runtime;version=1.4;provide:=true, \
  org.osgi.service.component.runtime.dto;version=1.4;provide:=true, \
- org.osgi.util.function;version=1.0, \
- org.osgi.util.promise;version=1.0
+ org.osgi.util.function;version=1.1, \
+ org.osgi.util.promise;version=1.1.1
 
 Private-Package: org.apache.felix.scr.impl.*
 

Modified: felix/trunk/scr/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/scr/pom.xml?rev=1853035&r1=1853034&r2=1853035&view=diff
==============================================================================
--- felix/trunk/scr/pom.xml (original)
+++ felix/trunk/scr/pom.xml Tue Feb  5 20:13:19 2019
@@ -114,7 +114,13 @@
         <dependency>
             <groupId>org.osgi</groupId>
             <artifactId>org.osgi.util.promise</artifactId>
-            <version>1.0.0</version>
+            <version>1.1.1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.util.function</artifactId>
+            <version>1.1.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>