You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2020/11/01 11:56:04 UTC

[sling-org-apache-sling-karaf-features] 04/05: SLING-9837 Use OSGi R7 HTTP Service

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

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

commit 2fb597ef796c42cfa4aaf3a97ccdaa1837f1ab9c
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sat Oct 31 16:13:45 2020 +0100

    SLING-9837 Use OSGi R7 HTTP Service
    
    add asm and spifly features for Groovy (bundles provided via Pax Web before)
---
 src/main/feature/feature.xml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/src/main/feature/feature.xml b/src/main/feature/feature.xml
index a0f1fd5..58bfac5 100644
--- a/src/main/feature/feature.xml
+++ b/src/main/feature/feature.xml
@@ -510,6 +510,7 @@
     <!-- dependencies -->
     <feature version="${project.version}">sling</feature>
     <feature version="${project.version}">sling-scripting</feature>
+    <feature version="${project.version}">spifly</feature>
     <bundle dependency="true">mvn:org.codehaus.groovy/groovy/3.0.1</bundle>
     <bundle dependency="true">mvn:org.codehaus.groovy/groovy-json/3.0.1</bundle>
     <bundle dependency="true">mvn:org.codehaus.groovy/groovy-templates/3.0.1</bundle>
@@ -702,4 +703,19 @@
     <bundle dependency="true">mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.ognl/3.2.1_1</bundle>
     <bundle dependency="true">mvn:org.javassist/javassist/3.27.0-GA</bundle>
   </feature>
+  <!-- asm -->
+  <feature name="asm" version="${project.version}">
+    <bundle>mvn:org.ow2.asm/asm/9.0</bundle>
+    <bundle>mvn:org.ow2.asm/asm-analysis/9.0</bundle>
+    <bundle>mvn:org.ow2.asm/asm-commons/9.0</bundle>
+    <bundle>mvn:org.ow2.asm/asm-util/9.0</bundle>
+    <bundle>mvn:org.ow2.asm/asm-tree/9.0</bundle>
+  </feature>
+  <!-- spifly -->
+  <feature name="spifly" version="${project.version}">
+    <bundle>mvn:org.apache.aries.spifly/org.apache.aries.spifly.dynamic.bundle/1.3.2</bundle>
+    <!-- dependencies -->
+    <bundle dependency="true">mvn:org.apache.aries/org.apache.aries.util/1.1.3</bundle>
+    <feature version="${project.version}">asm</feature>
+  </feature>
 </features>