You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2013/02/21 19:29:59 UTC

svn commit: r1448764 - /karaf/cellar/branches/cellar-2.2.x/webconsole/pom.xml

Author: jbonofre
Date: Thu Feb 21 18:29:59 2013
New Revision: 1448764

URL: http://svn.apache.org/r1448764
Log:
[KARAF-2202] Define the Felix WebConsole version range

Modified:
    karaf/cellar/branches/cellar-2.2.x/webconsole/pom.xml

Modified: karaf/cellar/branches/cellar-2.2.x/webconsole/pom.xml
URL: http://svn.apache.org/viewvc/karaf/cellar/branches/cellar-2.2.x/webconsole/pom.xml?rev=1448764&r1=1448763&r2=1448764&view=diff
==============================================================================
--- karaf/cellar/branches/cellar-2.2.x/webconsole/pom.xml (original)
+++ karaf/cellar/branches/cellar-2.2.x/webconsole/pom.xml Thu Feb 21 18:29:59 2013
@@ -35,7 +35,12 @@
 
     <properties>
         <osgi.import>
-            org.apache.karaf.cellar.core*;version="${project.version}"
+            org.apache.karaf.cellar.core*;version="${project.version}",
+            org.apache.felix.webconsole;version="[3,5)",
+            org.json,
+            org.osgi.framework,
+            org.osgi.service.blueprint,
+            org.slf4j;resolution:=optional
         </osgi.import>
         <osgi.dynamic.import>javax.*,org.w3c.*,org.xml.*</osgi.dynamic.import>
         <osgi.export>
@@ -106,22 +111,6 @@
                 </includes>
             </resource>
         </resources>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <configuration>
-                    <instructions>
-                        <Import-Package>*</Import-Package>
-                        <Embed-Dependency>
-                            <!-- Required for JSON data transfer -->
-                            <!-- TODO: this needs to be put in a common place for reuse. -->
-                            json
-                        </Embed-Dependency>
-                    </instructions>
-                </configuration>
-            </plugin>
-        </plugins>
     </build>
 
 </project>