You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sling.apache.org by Bertrand Delacretaz <bd...@apache.org> on 2009/04/01 14:44:33 UTC

FYI: current trunk requires Felix 1.6 to run, here's how

Hi,

Due to the changes of SLING-905, current trunk won't start, or rather
stays at run level 1, which is not much ;-)

FYI, to get it to work I had to use this patch:

Index: launchpad/base/pom.xml
===================================================================
--- launchpad/base/pom.xml      (revision 760866)
+++ launchpad/base/pom.xml      (working copy)
@@ -187,7 +187,7 @@
         <dependency>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.framework</artifactId>
-            <version>1.5.0-SNAPSHOT</version>
+            <version>1.6.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

And install the
http://people.apache.org/~pauls/1.6.0/org.apache.felix.framework-1.6.0.jar
manually in my local Maven repository.

-Bertrand