You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by cs...@apache.org on 2012/04/11 14:48:48 UTC

svn commit: r1324743 - /karaf/trunk/web/commands/pom.xml

Author: cschneider
Date: Wed Apr 11 12:48:48 2012
New Revision: 1324743

URL: http://svn.apache.org/viewvc?rev=1324743&view=rev
Log:
Optimize bundle plugin config

Modified:
    karaf/trunk/web/commands/pom.xml

Modified: karaf/trunk/web/commands/pom.xml
URL: http://svn.apache.org/viewvc/karaf/trunk/web/commands/pom.xml?rev=1324743&r1=1324742&r2=1324743&view=diff
==============================================================================
--- karaf/trunk/web/commands/pom.xml (original)
+++ karaf/trunk/web/commands/pom.xml Wed Apr 11 12:48:48 2012
@@ -89,19 +89,12 @@
                 <artifactId>maven-bundle-plugin</artifactId>
                 <configuration>
                     <instructions>
-                        <Import-Package>
-                            org.apache.karaf.web,
-                            javax.management,
-                            javax.management.loading,
-                            org.apache.aries.blueprint,
-                            org.osgi.service.blueprint.container,
-                            org.osgi.service.blueprint.reflect,
-                            org.apache.felix.service.command,
-                            org.apache.karaf.shell.commands,
-                            org.apache.karaf.shell.console,
-                            org.osgi.framework,
-                            *
-                        </Import-Package>
+                        <Export-Package>
+                            !org.apache.karaf.web.commands
+                        </Export-Package>
+                        <Private-Package>
+                            org.apache.karaf.web.commands
+                        </Private-Package>
                     </instructions>
                 </configuration>
             </plugin>