adding maven bundle plugin for our common module
diff --git a/geronimo-health-common/pom.xml b/geronimo-health-common/pom.xml
index 04a1d97..20d2f72 100644
--- a/geronimo-health-common/pom.xml
+++ b/geronimo-health-common/pom.xml
@@ -29,8 +29,20 @@
 
   <artifactId>geronimo-health-common</artifactId>
   <name>Geronimo Health :: Common</name>
+  <packaging>bundle</packaging>
 
   <properties>
     <geronimo-health.Automatic-Module-Name>org.apache.geronimo.microprofile.health.common</geronimo-health.Automatic-Module-Name>
   </properties>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <version>4.0.0</version>
+        <extensions>true</extensions>
+      </plugin>
+    </plugins>
+  </build>
 </project>
\ No newline at end of file