FELIX-63

Mosgi bundles are now using a version number different from the framework one.



git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@449698 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/mosgi.console.component/pom.xml b/mosgi.console.component/pom.xml
index 4397381..413c2c4 100644
--- a/mosgi.console.component/pom.xml
+++ b/mosgi.console.component/pom.xml
@@ -1,54 +1,105 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+  
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+    <!--
+      Use a property to set felix version. 
+      Properties can be set once on the top-level POM
+    -->
+    <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
+  </properties>
+
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX Console GUI component</name>
   <artifactId>org.apache.felix.mosgi.console.component</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
+      <!-- A default value of version can be set on the top-level POM in a dependencyManagement section :
+        <dependencyManagement>
+	  <dependencies>
+	    <dependency>
+	      <groupId>${pom.groupId}</groupId>
+	      <artifactId>org.osgi.core</artifactId>
+	      <version>${pom.version}</version>
+	    </dependency>
+	    [...]
+	  </dependencies>
+	</dependencyManagement-->
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.console.ifc.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+  
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
+	    <!--bundleManifestVersion>2</bundleManifestVersion-->
+	    <!--bundleClassPath></bundleClassPath-->
             <bundleName>MOSGi JMX Console main GUI component</bundleName>
+	    <!--bundleVersion>
+	      Default value is {pom.version}.
+	      For exemple : 0.9.3-SNAPSHOT -> Bundle-Version=0.9.3.SNAPSHOT
+	      But if we specify a ${*} value with extension "-SNAPSHOT" or a value with char '-'
+	      it will be misunderstood
+	    </bundleVersion-->
             <bundleDescription>MOSGi JMX Console main GUI component</bundleDescription>
-						<bundleActivator>auto-detect</bundleActivator>
+	    <!--bundleVendor>Stephane FRENOT</bundleVendor-->
+	    <!--bundleDate></bundleDate-->
+	    <!--bundleUpdateLocation>
+	      This value doesn't resolve "null" messages (when we update a bundle)...
+	    <bundleUpdateLocation-->
+	    <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>
+	    <!--bundleCategory></bundleCategory-->
             <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
-						<importPackage>
-						  org.apache.felix.mosgi.console.ifc;specification-version="1.0.0",
-						  javax.management;specification-version="1.0.0",
-						  javax.swing;specification-version="1.0.0",
-						  javax.swing.table;specification-version="1.0.0",
-						  org.osgi.framework;specification-version="1.0.0",
-						  javax.swing.tree;specification-version="1.0.0"
-						</importPackage>
+	    <!--exportPackage></exportPackage-->
+	    <importPackage>
+	      org.apache.felix.mosgi.console.ifc;specification-version="1.0.0",
+	      javax.management;specification-version="1.0.0",
+	      javax.swing;specification-version="1.0.0",
+	      javax.swing.table;specification-version="1.0.0",
+	      org.osgi.framework;specification-version="1.0.0",
+	      javax.swing.tree;specification-version="1.0.0"
+	    </importPackage>
+	    <!--dynamicImportPackage></dynamicImportPackage-->
+	    <!--metadataLocation></metadataLocation-->
+	    <!--bundleCopyright></bundleCopyright-->
+	    <!--bundleNativeCode></bundleNativeCode-->
+	    <!--bundleContactAdress></bundleContactAdress-->
+	    <!--bundleRequiredExecutionEnvironment></bundleRequiredExecutionEnvironment-->
+	    <!--bundleLocalization></bundleLocalization-->
+	    <!--requireBundle></requireBundle-->
+	    <!--fragmentHost></fragmentHost-->
+	    <!--serviceComponent></serviceComponent-->
           </osgiManifest>
         </configuration>
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.console.gui/pom.xml b/mosgi.console.gui/pom.xml
index 08f54fe..f2c929b 100644
--- a/mosgi.console.gui/pom.xml
+++ b/mosgi.console.gui/pom.xml
@@ -1,67 +1,78 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+    <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
+  </properties>
+  
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX Console Main GUI</name>
   <artifactId>org.apache.felix.mosgi.console.gui</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.framework</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.console.ifc.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
             <bundleName>MOSGi JMX Console main GUI</bundleName>
             <bundleDescription>MOSGi JMX Console main GUI</bundleDescription>
-						<bundleActivator>auto-detect</bundleActivator>
+	    <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>
-						<importPackage>
-						  org.osgi.framework;specification-version="1.0.0",
-						  javax.swing;specification-version="1.0.0",
-						  javax.swing.event;specification-version="1.0.0",
-						  javax.swing.tree;specification-version="1.0.0",
-						  javax.management;specification-version="1.0.0",
-						  javax.management.remote;specification-version="1.0.0",
-						  org.apache.felix.mosgi.console.ifc;specification-version="1.0.0"
-						</importPackage>
+	    <importPackage>
+	      org.osgi.framework;specification-version="1.0.0",
+	      javax.swing;specification-version="1.0.0",
+	      javax.swing.event;specification-version="1.0.0",
+	      javax.swing.tree;specification-version="1.0.0",
+	      javax.management;specification-version="1.0.0",
+	      javax.management.remote;specification-version="1.0.0",
+	      org.apache.felix.mosgi.console.ifc;specification-version="1.0.0"
+	    </importPackage>
           </osgiManifest>
         </configuration>
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.console.ifc/pom.xml b/mosgi.console.ifc/pom.xml
index eda3b8a..8e0377a 100644
--- a/mosgi.console.ifc/pom.xml
+++ b/mosgi.console.ifc/pom.xml
@@ -1,33 +1,42 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+  </properties>
+
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX Console Interface</name>
   <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+  
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -38,11 +47,12 @@
             <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"
+	      ${pom.artifactId};specification-version="1.0.0"
             </exportPackage>
           </osgiManifest>
         </configuration>
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.doc/config.properties.core b/mosgi.doc/config.properties.core
index d589e2c..2a685bb 100644
--- a/mosgi.doc/config.properties.core
+++ b/mosgi.doc/config.properties.core
@@ -16,26 +16,26 @@
  file:bundle/org.apache.felix.shell.tui-0.8.0-SNAPSHOT.jar \
  file:bundle/org.apache.felix.bundlerepository-0.8.0-SNAPSHOT.jar \
  http://ares.insa-lyon.fr/~sfrenot/devel/mosgi/insajmx/trunk/lib/log.jar \
- file:../mosgi.jmx.remotelogger/target/org.apache.felix.mosgi.jmx.remotelogger-0.8.0-SNAPSHOT.jar \
- file:../mosgi.jmx.agent/target/org.apache.felix.mosgi.jmx.agent-0.8.0-SNAPSHOT.jar \
- file:../mosgi.jmx.registry/target/org.apache.felix.mosgi.jmx.registry-0.8.0-SNAPSHOT.jar \
- file:../mosgi.jmx.rmiconnector/target/org.apache.felix.mosgi.jmx.rmiconnector-0.8.0-SNAPSHOT.jar \
- file:../mosgi.console.ifc/target/org.apache.felix.mosgi.console.ifc-0.8.0-SNAPSHOT.jar \
- file:../mosgi.managedelements.osgiprobes/target/org.apache.felix.mosgi.managedelements.osgiprobes-0.8.0-SNAPSHOT.jar \
- file:../mosgi.managedelements.bundlesprobes/target/org.apache.felix.mosgi.managedelements.bundlesprobes-0.8.0-SNAPSHOT.jar \
- file:../mosgi.managedelements.memoryprobe/target/org.apache.felix.mosgi.managedelements.memoryprobe-0.8.0-SNAPSHOT.jar \
- file:../mosgi.managedelements.obrprobe/target/org.apache.felix.mosgi.managedelements.obrprobe-0.8.0-SNAPSHOT.jar \
+ file:../mosgi.jmx.remotelogger/target/org.apache.felix.mosgi.jmx.remotelogger-0.9.0-SNAPSHOT.jar \
+ file:../mosgi.jmx.agent/target/org.apache.felix.mosgi.jmx.agent-0.9.0-SNAPSHOT.jar \
+ file:../mosgi.jmx.registry/target/org.apache.felix.mosgi.jmx.registry-0.9.0-SNAPSHOT.jar \
+ file:../mosgi.jmx.rmiconnector/target/org.apache.felix.mosgi.jmx.rmiconnector-0.9.0-SNAPSHOT.jar \
+ file:../mosgi.console.ifc/target/org.apache.felix.mosgi.console.ifc-0.9.0-SNAPSHOT.jar \
+ file:../mosgi.managedelements.osgiprobes/target/org.apache.felix.mosgi.managedelements.osgiprobes-0.9.0-SNAPSHOT.jar \
+ file:../mosgi.managedelements.bundlesprobes/target/org.apache.felix.mosgi.managedelements.bundlesprobes-0.9.0-SNAPSHOT.jar \
+ file:../mosgi.managedelements.memoryprobe/target/org.apache.felix.mosgi.managedelements.memoryprobe-0.9.0-SNAPSHOT.jar \
+ file:../mosgi.managedelements.obrprobe/target/org.apache.felix.mosgi.managedelements.obrprobe-0.9.0-SNAPSHOT.jar \
  http://perso.citi.insa-lyon.fr/sfrenot/devel/mosgi/managedelements/trunk/mosgi.managedelements.linuxprobes/target/org.apache.felix.mosgi.managedelements.linuxprobes-0.8.0-SNAPSHOT.jar
 
 # if we need the http jmx connector
 # file:../mosgi.jmx.httpconnector/target/org.apache.felix.mosgi.jmx.httpconnector-0.8.0-SNAPSHOT.jar
 
 
-mosgi.jmxconsole.tab.url.osgiprobestab=file:../mosgi.managedelements.osgiprobes.tab/target/org.apache.felix.mosgi.managedelements.osgiprobes.tab-0.8.0-SNAPSHOT.jar
-mosgi.jmxconsole.tab.url.bundlesprobestab=file:../mosgi.managedelements.bundlesprobes.tab/target/org.apache.felix.mosgi.managedelements.bundlesprobes.tab-0.8.0-SNAPSHOT.jar
-mosgi.jmxconsole.tab.url.obrprobetab=file:../mosgi.managedelements.obrprobe.tab/target/org.apache.felix.mosgi.managedelements.obrprobe.tab-0.8.0-SNAPSHOT.jar
+mosgi.jmxconsole.tab.url.osgiprobestab=file:../mosgi.managedelements.osgiprobes.tab/target/org.apache.felix.mosgi.managedelements.osgiprobes.tab-0.9.0-SNAPSHOT.jar
+mosgi.jmxconsole.tab.url.bundlesprobestab=file:../mosgi.managedelements.bundlesprobes.tab/target/org.apache.felix.mosgi.managedelements.bundlesprobes.tab-0.9.0-SNAPSHOT.jar
+mosgi.jmxconsole.tab.url.obrprobetab=file:../mosgi.managedelements.obrprobe.tab/target/org.apache.felix.mosgi.managedelements.obrprobe.tab-0.9.0-SNAPSHOT.jar
 mosgi.jmxconsole.tab.url.memoryprobetab=http://perso.citi.insa-lyon.fr/sfrenot/devel/mosgi/managedelements/trunk/mosgi.managedelements.memoryprobe.tab/target/org.apache.felix.mosgi.managedelements.memoryprobe.tab-0.8.0-SNAPSHOT.jar
-mosgi.jmxconsole.tab.url.linuxprobestab=http://perso.citi.insa-lyon.fr/sfrenot/devel/mosgi/managedelements/trunk/mosgi.managedelements.linuxprobes.tab/target/org.apache.felix.mosgi.managedelements.linuxprobes.tab-0.8.0-SNAPSHOT.jar
+mosgi.jmxconsole.tab.url.linuxprobestab=http://perso.citi.insa-lyon.fr/sfrenot/devel/mosgi/managedelements/trunk/mosgi.managedelements.linuxprobes.tab/target/org.apache.felix.mosgi.managedelements.linuxprobes.tab-0.9.0-SNAPSHOT.jar
 
 #mosgi.jmxconsole.rmiport.core=1100
 
diff --git a/mosgi.doc/config.properties.jmxconsole b/mosgi.doc/config.properties.jmxconsole
index 1430fab..856d8ac 100644
--- a/mosgi.doc/config.properties.jmxconsole
+++ b/mosgi.doc/config.properties.jmxconsole
@@ -15,9 +15,9 @@
  file:bundle/org.apache.felix.shell-0.8.0-SNAPSHOT.jar \
  file:bundle/org.apache.felix.shell.tui-0.8.0-SNAPSHOT.jar \
  file:bundle/org.apache.felix.bundlerepository-0.8.0-SNAPSHOT.jar \
- file:../mosgi.console.ifc/target/org.apache.felix.mosgi.console.ifc-0.8.0-SNAPSHOT.jar \
- file:../mosgi.console.gui/target/org.apache.felix.mosgi.console.gui-0.8.0-SNAPSHOT.jar \
- file:../mosgi.console.component/target/org.apache.felix.mosgi.console.component-0.8.0-SNAPSHOT.jar
+ file:../mosgi.console.ifc/target/org.apache.felix.mosgi.console.ifc-0.9.0-SNAPSHOT.jar \
+ file:../mosgi.console.gui/target/org.apache.felix.mosgi.console.gui-0.9.0-SNAPSHOT.jar \
+ file:../mosgi.console.component/target/org.apache.felix.mosgi.console.component-0.9.0-SNAPSHOT.jar
 
 #possible values : both treeonly tableonly none (default=both)
 mosgi.jmxconsole.remotelogger.componentfilter=both
diff --git a/mosgi.jmx.agent/pom.xml b/mosgi.jmx.agent/pom.xml
index eea8dd6..91eec75 100644
--- a/mosgi.jmx.agent/pom.xml
+++ b/mosgi.jmx.agent/pom.xml
@@ -1,39 +1,48 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+  </properties>
+
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX agent</name>
   <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.framework</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -45,10 +54,10 @@
             <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",
-               org.apache.felix.mosgi.jmx.agent.mx4j.server;specification-version="1.0.0",
-               org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor;specification-version="1.0.0",
-               org.apache.felix.mosgi.jmx.agent.mx4j.util;specification-version="1.0.0"
+              ${pom.artifactId};specification-version="1.0.0",
+              org.apache.felix.mosgi.jmx.agent.mx4j.server;specification-version="1.0.0",
+              org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor;specification-version="1.0.0",
+              org.apache.felix.mosgi.jmx.agent.mx4j.util;specification-version="1.0.0"
             </exportPackage>
             <importPackage>
               org.osgi.service.log;specification-version="1.0.0",
@@ -61,4 +70,5 @@
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.jmx.httpconnector/pom.xml b/mosgi.jmx.httpconnector/pom.xml
index ee2ec26..f3adfb0 100644
--- a/mosgi.jmx.httpconnector/pom.xml
+++ b/mosgi.jmx.httpconnector/pom.xml
@@ -1,45 +1,55 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+    <mosgi.jmx.agent.version>0.9.0-SNAPSHOT</mosgi.jmx.agent.version>
+  </properties>
+
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX httpconnector</name>
   <artifactId>org.apache.felix.mosgi.jmx.httpconnector</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.framework</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.jmx.agent.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -67,4 +77,5 @@
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.jmx.registry/pom.xml b/mosgi.jmx.registry/pom.xml
index 0a136b1..9114d26 100644
--- a/mosgi.jmx.registry/pom.xml
+++ b/mosgi.jmx.registry/pom.xml
@@ -1,39 +1,48 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+  
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+  </properties>
+  
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX registry</name>
   <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.framework</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -45,7 +54,7 @@
             <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
             <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
             <exportPackage>
-      ${pom.artifactId}.mx4j.tools.naming;specification-version="1.0.0"
+              ${pom.artifactId}.mx4j.tools.naming;specification-version="1.0.0"
             </exportPackage>
 	    <dynamicImportPackage>
 	      *
@@ -55,4 +64,5 @@
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.jmx.remotelogger/pom.xml b/mosgi.jmx.remotelogger/pom.xml
index e844f13..195b1c7 100644
--- a/mosgi.jmx.remotelogger/pom.xml
+++ b/mosgi.jmx.remotelogger/pom.xml
@@ -1,24 +1,32 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+  
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+  </properties>
+
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX remotelogger</name>
   <artifactId>org.apache.felix.mosgi.jmx.remotelogger</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <!--dependency>
@@ -28,12 +36,13 @@
       <scope>provided</scope>
     </dependency-->
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -44,14 +53,15 @@
             <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>
-	          <importPackage>
-  	    org.osgi.service.log;specification-version="1.0.0",
+	    <importPackage>
+  	      org.osgi.service.log;specification-version="1.0.0",
 	      org.osgi.framework;specification-version="1.0.0",
 	      javax.management;specification-version="1.0.0"
-	          </importPackage>
+	    </importPackage>
           </osgiManifest>
         </configuration>
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.jmx.rmiconnector/pom.xml b/mosgi.jmx.rmiconnector/pom.xml
index f2b2ef9..4b7c5fd 100644
--- a/mosgi.jmx.rmiconnector/pom.xml
+++ b/mosgi.jmx.rmiconnector/pom.xml
@@ -1,51 +1,62 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+  
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+    <mosgi.jmx.agent.version>0.9.0-SNAPSHOT</mosgi.jmx.agent.version>
+    <mosgi.jmx.registry.version>0.9.0-SNAPSHOT</mosgi.jmx.registry.version>
+  </properties>
+  
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX rmiconnector</name>
   <artifactId>org.apache.felix.mosgi.jmx.rmiconnector</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.jmx.agent.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.jmx.registry.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.framework</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -76,4 +87,5 @@
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.managedelements.bundlesprobes.tab/pom.xml b/mosgi.managedelements.bundlesprobes.tab/pom.xml
index 6f66778..7e7f890 100644
--- a/mosgi.managedelements.bundlesprobes.tab/pom.xml
+++ b/mosgi.managedelements.bundlesprobes.tab/pom.xml
@@ -1,45 +1,55 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+  
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+    <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
+  </properties>
+
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-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-SNAPSHOT</version>
+  
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.console.ifc.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.framework</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -66,4 +76,5 @@
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.managedelements.bundlesprobes/pom.xml b/mosgi.managedelements.bundlesprobes/pom.xml
index 7ab68bb..e960f4b 100644
--- a/mosgi.managedelements.bundlesprobes/pom.xml
+++ b/mosgi.managedelements.bundlesprobes/pom.xml
@@ -5,42 +5,51 @@
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+  
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+    <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
+  </properties>
+
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX MBean for OSGi bundles management</name>
   <artifactId>org.apache.felix.mosgi.managedelements.bundlesprobes</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+  
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.console.ifc.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.framework</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -65,4 +74,5 @@
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.managedelements.memoryprobe/pom.xml b/mosgi.managedelements.memoryprobe/pom.xml
index dd85ee2..2a38c52 100644
--- a/mosgi.managedelements.memoryprobe/pom.xml
+++ b/mosgi.managedelements.memoryprobe/pom.xml
@@ -1,51 +1,62 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+  
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+    <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
+    <mosgi.jmx.agent.version>0.9.0-SNAPSHOT</mosgi.jmx.agent.version>
+  </properties>
+  
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX MBean for obr interaction</name>
   <artifactId>org.apache.felix.mosgi.managedelements.memoryprobe</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.console.ifc.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.framework</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.jmx.agent.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -66,4 +77,5 @@
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.managedelements.obrprobe.tab/pom.xml b/mosgi.managedelements.obrprobe.tab/pom.xml
index 3e3a095..4d6386c 100644
--- a/mosgi.managedelements.obrprobe.tab/pom.xml
+++ b/mosgi.managedelements.obrprobe.tab/pom.xml
@@ -1,45 +1,55 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+  
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+    <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
+  </properties>
+
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-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-SNAPSHOT</version>
+  
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.console.ifc.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.bundlerepository</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -51,19 +61,20 @@
             <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
             <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
             <exportPackage>
-               ${pom.artifactId}
+              ${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>
+            <importPackage>
+              javax.management,
+              org.osgi.framework,
+              javax.swing,
+              javax.swing.table,
+              org.osgi.service.obr,
+              org.apache.felix.mosgi.console.ifc
+            </importPackage>
           </osgiManifest>
         </configuration>
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.managedelements.obrprobe/pom.xml b/mosgi.managedelements.obrprobe/pom.xml
index 9979933..e7c7682 100644
--- a/mosgi.managedelements.obrprobe/pom.xml
+++ b/mosgi.managedelements.obrprobe/pom.xml
@@ -1,51 +1,61 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+  
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+    <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
+  </properties>
+
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX MBean for obr interaction</name>
   <artifactId>org.apache.felix.mosgi.managedelements.obrprobe</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+  
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.console.ifc.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.framework</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.bundlerepository</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -71,4 +81,5 @@
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.managedelements.osgiprobes.tab/pom.xml b/mosgi.managedelements.osgiprobes.tab/pom.xml
index f4e9036..fd42163 100644
--- a/mosgi.managedelements.osgiprobes.tab/pom.xml
+++ b/mosgi.managedelements.osgiprobes.tab/pom.xml
@@ -1,39 +1,49 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+  
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+    <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
+  </properties>
+  
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi OSGi gateway status tab for the JMX console</name>
   <artifactId>org.apache.felix.mosgi.managedelements.osgiprobes.tab</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.console.ifc.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -45,18 +55,19 @@
             <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"
+	      ${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.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>
+	    <importPackage>
+	      javax.management;specification-version="1.0.0",
+	      org.osgi.framework;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>
         </configuration>
       </plugin>
     </plugins>
   </build>
+
 </project>
diff --git a/mosgi.managedelements.osgiprobes/pom.xml b/mosgi.managedelements.osgiprobes/pom.xml
index e5717b2..73e0992 100644
--- a/mosgi.managedelements.osgiprobes/pom.xml
+++ b/mosgi.managedelements.osgiprobes/pom.xml
@@ -1,45 +1,55 @@
 <project>
+
   <parent>
     <groupId>org.apache.felix</groupId>
     <artifactId>felix</artifactId>
     <version>0.8.0-SNAPSHOT</version>
   </parent>
+ 
+  <properties>
+    <felix.version>0.8.0-SNAPSHOT</felix.version>
+    <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
+  </properties>
+
   <modelVersion>4.0.0</modelVersion>
   <packaging>osgi-bundle</packaging>
   <name>Apache Felix MOSGi JMX MBean for OSGi gateway status</name>
   <artifactId>org.apache.felix.mosgi.managedelements.osgiprobes</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+
   <dependencies>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
-      <version>${pom.version}</version>
+      <version>${mosgi.console.ifc.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.framework</artifactId>
-      <version>${pom.version}</version>
+      <version>${felix.version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.felix.plugins</groupId>
         <artifactId>maven-osgi-plugin</artifactId>
-        <version>${pom.version}</version>
+        <version>${felix.version}</version>
         <extensions>true</extensions>
         <configuration>
           <osgiManifest>
@@ -64,4 +74,5 @@
       </plugin>
     </plugins>
   </build>
+
 </project>