FELIX-307
---------
Moving all poms to maven-bundle-plugin




git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@551579 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/mosgi/mosgi.managedelements.bundlesprobes.tab/pom.xml b/mosgi/mosgi.managedelements.bundlesprobes.tab/pom.xml
index aaed398..c7f9eb4 100644
--- a/mosgi/mosgi.managedelements.bundlesprobes.tab/pom.xml
+++ b/mosgi/mosgi.managedelements.bundlesprobes.tab/pom.xml
@@ -5,13 +5,13 @@
     <artifactId>felix</artifactId>
     <version>0.9.0-incubator-SNAPSHOT</version>
   </parent>
-  
+
   <modelVersion>4.0.0</modelVersion>
-  <packaging>osgi-bundle</packaging>
+  <packaging>bundle</packaging>
   <name>Apache Felix MOSGi Bundles management tab for the JMX console</name>
   <artifactId>org.apache.felix.mosgi.managedelements.bundlesprobes.tab</artifactId>
   <version>0.9.0-incubator-SNAPSHOT</version>
-  
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
@@ -38,31 +38,16 @@
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.felix.plugins</groupId>
-        <artifactId>maven-osgi-plugin</artifactId>
-        <!--version>${felix.version}</version-->
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
         <extensions>true</extensions>
         <configuration>
-          <osgiManifest>
-            <bundleName>MOSGi Bundles management tab for the JMX console</bundleName>
-            <bundleDescription>MOSGi Bundles management tab for the JMX console</bundleDescription>
-            <bundleActivator>auto-detect</bundleActivator>
-            <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
-            <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
-            <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
-            <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
-            <exportPackage>
-              ${pom.artifactId};specification-version="1.0.0"
-            </exportPackage>
-            <importPackage>
-              javax.management;specification-version="1.0.0",
-              org.osgi.framework;specification-version="1.0.0",
-              javax.management.openmbean;specification-version="1.0.0",
-              javax.swing;specification-version="1.0.0",
-              javax.swing.table;specification-version="1.0.0",
-              org.apache.felix.mosgi.console.ifc;specification-version="1.0.0"
-            </importPackage>
-          </osgiManifest>
+          <instructions>
+            <Bundle-Name>MOSGi Bundles management tab for the JMX console</Bundle-Name>
+            <Bundle-Description>MOSGi Bundles management tab for the JMX console</Bundle-Description>
+	    <Bundle-Activator>org.apache.felix.mosgi.managedelements.bundlesprobes.tab.BundlesProbesTabUI</Bundle-Activator>
+            <Export-Package>${pom.artifactId}</Export-Package>
+          </instructions>
         </configuration>
       </plugin>
     </plugins>