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.obrprobe.tab/pom.xml b/mosgi/mosgi.managedelements.obrprobe.tab/pom.xml
index ad91931..533f01d 100644
--- a/mosgi/mosgi.managedelements.obrprobe.tab/pom.xml
+++ b/mosgi/mosgi.managedelements.obrprobe.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 obr remote manipulation tab for the JMX console</name>
   <artifactId>org.apache.felix.mosgi.managedelements.obrprobe.tab</artifactId>
   <version>0.9.0-incubator-SNAPSHOT</version>
-  
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
@@ -38,31 +38,17 @@
   <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 obr remote manipulation tab for the JMX console</bundleName>
-            <bundleDescription>MOSGi obr remote manipulation 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}
-            </exportPackage>
-            <importPackage>
-              javax.management,
-              org.osgi.framework,
-              javax.swing,
-              javax.swing.table,
-              org.osgi.service.obr,
-              org.apache.felix.mosgi.console.ifc
-            </importPackage>
-          </osgiManifest>
+          <instructions>
+            <Bundle-Name>MOSGi obr remote manipulation tab for the JMX console</Bundle-Name>
+            <Bundle-Description>MOSGi obr remote manipulation tab for the JMX console</Bundle-Description>
+            <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+	    <Bundle-Activator>org.apache.felix.mosgi.managedelements.obrprobe.tab.ObrProbeTabUI</Bundle-Activator>
+            <Export-Package>${pom.artifactId}</Export-Package>
+          </instructions>
         </configuration>
       </plugin>
     </plugins>