KARAF-1776 Move all versions to parent pom instead of splitting them across modules

git-svn-id: https://svn.apache.org/repos/asf/karaf/webconsole/trunk@1378690 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/assembly/src/main/resources/features.xml b/assembly/src/main/resources/features.xml
index 78b74e3..3c59027 100644
--- a/assembly/src/main/resources/features.xml
+++ b/assembly/src/main/resources/features.xml
@@ -17,7 +17,7 @@
 -->
 <features name="karaf-webconsole-${project.version}">
 
-  <repository>mvn:org.ops4j.pax.wicket/features/${ops4j.paxwicket.version}/xml/features</repository>
+  <repository>mvn:org.ops4j.pax.wicket/features/${pax-wicket.version}/xml/features</repository>
 
   <feature name="webconsole-wicket" version="${project.version}" description="Karaf Wicket Webconsole">
     <feature>webconsole-core</feature>
diff --git a/camel/pom.xml b/camel/pom.xml
index 1fecbb0..48bc9a9 100644
--- a/camel/pom.xml
+++ b/camel/pom.xml
@@ -34,13 +34,10 @@
         <dependency>
             <groupId>org.apache.karaf.webconsole</groupId>
             <artifactId>org.apache.karaf.webconsole.core</artifactId>
-            <version>${project.version}</version>
         </dependency>
-
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-core</artifactId>
-            <version>${camel.version}</version>
         </dependency>
     </dependencies>
 
@@ -49,7 +46,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/core/pom.xml b/core/pom.xml
index 01129c1..882cdf9 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -44,42 +44,36 @@
         <dependency>
             <groupId>org.ops4j.pax.wicket</groupId>
             <artifactId>org.ops4j.pax.wicket.service</artifactId>
-            <version>${ops4j.paxwicket.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.karaf.jaas</groupId>
             <artifactId>org.apache.karaf.jaas.modules</artifactId>
-            <version>${karaf.version}</version>
         </dependency>
 
         <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-servlet_2.5_spec</artifactId>
             <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.8.2</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.ops4j.pax.wicket</groupId>
             <artifactId>org.ops4j.pax.wicket.test</artifactId>
-            <version>${ops4j.paxwicket.version}</version>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
-            <version>${slf4j.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.easymock</groupId>
             <artifactId>easymock</artifactId>
-            <version>3.0</version>
             <scope>test</scope>
         </dependency>
     </dependencies>
@@ -89,7 +83,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
@@ -138,7 +131,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>
-                <version>2.9</version>
                 <configuration>
                     <systemProperties>
                         <property>
diff --git a/cxf/pom.xml b/cxf/pom.xml
index bf285cd..691123c 100644
--- a/cxf/pom.xml
+++ b/cxf/pom.xml
@@ -34,13 +34,11 @@
         <dependency>
             <groupId>org.apache.karaf.webconsole</groupId>
             <artifactId>org.apache.karaf.webconsole.core</artifactId>
-            <version>${project.version}</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.cxf</groupId>
             <artifactId>cxf-rt-core</artifactId>
-            <version>${cxf.version}</version>
         </dependency>
     </dependencies>
 
@@ -49,7 +47,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/examples/branding/pom.xml b/examples/branding/pom.xml
index 6d401a6..62591a0 100644
--- a/examples/branding/pom.xml
+++ b/examples/branding/pom.xml
@@ -43,7 +43,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>2.3.7</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
@@ -51,10 +50,6 @@
                         <Import-Package>
                             !org.apache.karaf.webconsole.examples.branding,
                             *,
-<!--                             transient dependencies -->
-<!--                             org.ops4j.pax.wicket.api, -->
-<!--                             org.ops4j.pax.wicket.util, -->
-<!--                             org.ops4j.pax.wicket.util.proxy -->
                         </Import-Package>
                     </instructions>
                 </configuration>
diff --git a/examples/events/consumer/pom.xml b/examples/events/consumer/pom.xml
index 9138343..6f43289 100644
--- a/examples/events/consumer/pom.xml
+++ b/examples/events/consumer/pom.xml
@@ -42,7 +42,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/examples/events/provider/pom.xml b/examples/events/provider/pom.xml
index d3be077..c033e3d 100644
--- a/examples/events/provider/pom.xml
+++ b/examples/events/provider/pom.xml
@@ -42,7 +42,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/examples/scala/pom.xml b/examples/scala/pom.xml
index d51c4d9..da680ee 100644
--- a/examples/scala/pom.xml
+++ b/examples/scala/pom.xml
@@ -34,12 +34,10 @@
         <dependency>
             <groupId>org.apache.karaf.webconsole</groupId>
             <artifactId>org.apache.karaf.webconsole.core</artifactId>
-            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.scala-lang</groupId>
             <artifactId>scala-library</artifactId>
-            <version>2.9.1</version>
         </dependency>
     </dependencies>
 
@@ -48,20 +46,10 @@
             <plugin>
                 <groupId>org.scala-tools</groupId>
                 <artifactId>maven-scala-plugin</artifactId>
-                <version>2.15.2</version>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>compile</goal>
-                            <goal>testCompile</goal>
-                        </goals>
-                    </execution>
-                </executions>
             </plugin>
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/examples/scr/pom.xml b/examples/scr/pom.xml
index e35ab83..8ab2830 100644
--- a/examples/scr/pom.xml
+++ b/examples/scr/pom.xml
@@ -30,20 +30,11 @@
     <name>Apache Karaf :: WebConsole :: Examples :: Scr</name>
     <packaging>bundle</packaging>
 
-
-<!--     <dependencies> -->
-<!--         <dependency> -->
-<!--             <groupId>org.osgi</groupId> -->
-<!--             <artifactId>org.osgi.compendium</artifactId> -->
-<!--         </dependency> -->
-<!--     </dependencies> -->
-
     <build>
         <plugins>
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/itest/pom.xml b/itest/pom.xml
index cc030a8..7f5d628 100644
--- a/itest/pom.xml
+++ b/itest/pom.xml
@@ -34,7 +34,6 @@
         <dependency>
             <groupId>org.apache.karaf.webconsole</groupId>
             <artifactId>apache-karaf-webconsole</artifactId>
-            <version>${project.version}</version>
             <classifier>features</classifier>
             <type>xml</type>
         </dependency>
@@ -42,38 +41,29 @@
         <dependency>
             <groupId>org.openengsb.labs.paxexam.karaf</groupId>
             <artifactId>paxexam-karaf-container</artifactId>
-            <version>0.5.0</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.ops4j.pax.exam</groupId>
             <artifactId>pax-exam-junit4</artifactId>
-            <version>2.3.0</version>
             <scope>test</scope>
         </dependency>
-
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
-            <version>${slf4j.version}</version>
             <scope>test</scope>
         </dependency>
-
         <dependency>
             <groupId>org.apache.karaf</groupId>
             <artifactId>karaf</artifactId>
-            <version>${karaf.version}</version>
             <type>pom</type>
             <scope>test</scope>
         </dependency>
-
         <dependency>
             <groupId>org.apache.karaf.features</groupId>
             <artifactId>org.apache.karaf.features.core</artifactId>
-            <version>${karaf.version}</version>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
 
     <build>
diff --git a/karaf/admin/pom.xml b/karaf/admin/pom.xml
index 52c895a..7976a49 100644
--- a/karaf/admin/pom.xml
+++ b/karaf/admin/pom.xml
@@ -47,7 +47,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/karaf/core/pom.xml b/karaf/core/pom.xml
index 1ff409d..3926ad7 100644
--- a/karaf/core/pom.xml
+++ b/karaf/core/pom.xml
@@ -42,7 +42,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/karaf/feature/pom.xml b/karaf/feature/pom.xml
index faacbb4..384575c 100644
--- a/karaf/feature/pom.xml
+++ b/karaf/feature/pom.xml
@@ -47,7 +47,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/karaf/pom.xml b/karaf/pom.xml
index 15aa438..1e87dd1 100644
--- a/karaf/pom.xml
+++ b/karaf/pom.xml
@@ -36,24 +36,4 @@
         <module>feature</module>
     </modules>
 
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.apache.karaf.webconsole</groupId>
-                <artifactId>org.apache.karaf.webconsole.core</artifactId>
-                <version>${project.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.karaf.features</groupId>
-                <artifactId>org.apache.karaf.features.core</artifactId>
-                <version>${karaf.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.karaf.admin</groupId>
-                <artifactId>org.apache.karaf.admin.core</artifactId>
-                <version>${karaf.version}</version>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
 </project>
\ No newline at end of file
diff --git a/manual/pom.xml b/manual/pom.xml
index 0d44fa7..cc713c6 100644
--- a/manual/pom.xml
+++ b/manual/pom.xml
@@ -33,7 +33,6 @@
     <properties>
         <manual.dir>${project.build.directory}/manual</manual.dir>
         <manual>${manual.dir}/webconsole-manual-${project.version}</manual>
-        <scala.version>2.9.0-1</scala.version>
         <scalate.version>1.5.1</scalate.version>
         <webconsole.version>${project.version}</webconsole.version>
     </properties>
@@ -52,12 +51,10 @@
         <dependency>
             <groupId>org.scala-lang</groupId>
             <artifactId>scala-library</artifactId>
-            <version>${scala.version}</version>
         </dependency>
         <dependency>
             <groupId>org.scala-lang</groupId>
             <artifactId>scala-compiler</artifactId>
-            <version>${scala.version}</version>
         </dependency>
     </dependencies>
 
@@ -134,7 +131,6 @@
             <plugin>
                 <groupId>org.mortbay.jetty</groupId>
                 <artifactId>jetty-maven-plugin</artifactId>
-                <version>7.1.5.v20100705</version>
                 <configuration>
                     <!-- When editing the conf files, you can comment this line to run
                         mvn jetty:run
diff --git a/osgi/blueprint/pom.xml b/osgi/blueprint/pom.xml
index b01ee53..a61e3da 100644
--- a/osgi/blueprint/pom.xml
+++ b/osgi/blueprint/pom.xml
@@ -35,11 +35,9 @@
             <groupId>org.apache.karaf.webconsole.osgi</groupId>
             <artifactId>org.apache.karaf.webconsole.osgi.core</artifactId>
         </dependency>
-
         <dependency>
             <groupId>org.apache.aries.blueprint</groupId>
             <artifactId>org.apache.aries.blueprint</artifactId>
-            <version>0.3.1</version>
         </dependency>
     </dependencies>
 
@@ -48,7 +46,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/osgi/config/pom.xml b/osgi/config/pom.xml
index 8a7d134..25dfe7c 100644
--- a/osgi/config/pom.xml
+++ b/osgi/config/pom.xml
@@ -46,7 +46,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <configuration>
                     <instructions>
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
diff --git a/osgi/core/pom.xml b/osgi/core/pom.xml
index 8a1acea..b782177 100644
--- a/osgi/core/pom.xml
+++ b/osgi/core/pom.xml
@@ -34,29 +34,24 @@
         <dependency>
             <groupId>org.apache.karaf.webconsole</groupId>
             <artifactId>org.apache.karaf.webconsole.core</artifactId>
-            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.osgi</groupId>
             <artifactId>org.osgi.compendium</artifactId>
         </dependency>
-
         <dependency>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.utils</artifactId>
-            <version>1.1.0</version>
         </dependency>
 
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.10</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
-            <version>1.6.4</version>
             <scope>test</scope>
         </dependency>
     </dependencies>
@@ -66,7 +61,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <configuration>
                     <instructions>
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
diff --git a/osgi/event/pom.xml b/osgi/event/pom.xml
index c88cc1e..e6db382 100644
--- a/osgi/event/pom.xml
+++ b/osgi/event/pom.xml
@@ -46,7 +46,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <configuration>
                     <instructions>
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
diff --git a/osgi/log/pom.xml b/osgi/log/pom.xml
index 7821d0d..2080df0 100644
--- a/osgi/log/pom.xml
+++ b/osgi/log/pom.xml
@@ -46,7 +46,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <configuration>
                     <instructions>
                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
diff --git a/osgi/scr/pom.xml b/osgi/scr/pom.xml
index 1508ed3..140fb42 100644
--- a/osgi/scr/pom.xml
+++ b/osgi/scr/pom.xml
@@ -47,7 +47,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/pom.xml b/pom.xml
index ad36b6b..ce28964 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,19 +40,33 @@
     </scm>
 
     <properties>
-        <osgi.version>4.2.0</osgi.version>
-        <jetty.version>6.1.25</jetty.version>
+        <!-- Please keep properties in alphabetical order -->
+        <aries-blueprint.version>0.3.1</aries-blueprint.version>
+        <aries-proxy.version>0.3</aries-proxy.version>
+        <camel.version>2.6.0</camel.version>
+        <cxf.version>2.5.1</cxf.version>
+        <easymock.version>3.0</easymock.version>
+        <felix-framework.version>4.0.2</felix-framework.version>
         <felix-metatype.version>1.0.4</felix-metatype.version>
         <felix-prefs.version>1.0.4</felix-prefs.version>
         <felix-scr.version>1.6.0</felix-scr.version>
-        <slf4j.version>1.6.1</slf4j.version>
-        <log4j.version>1.2.14</log4j.version>
-        <ops4j.paxwicket.version>1.1.0</ops4j.paxwicket.version>
+        <felix-utils.version>1.1.0</felix-utils.version>
+        <felix-config.version>1.2.8</felix-config.version>
+        <felix-http.version>2.2.0</felix-http.version>
+        <jetty-plugin.version>7.5.4.v20111024</jetty-plugin.version>
+        <junit.version>4.8.2</junit.version>
         <karaf.version>2.2.8</karaf.version>
-        <nmr.version>1.4.0</nmr.version>
-        <camel.version>2.6.0</camel.version>
-        <cxf.version>2.5.1</cxf.version>
+        <log4j.version>1.2.14</log4j.version>
         <maven-bundle.version>2.3.7</maven-bundle.version>
+        <osgi.version>4.2.0</osgi.version>
+        <pax-exam-karaf.version>0.5.0</pax-exam-karaf.version>
+        <pax-exam-junit.version>2.3.0</pax-exam-junit.version>
+        <pax-logging.version>1.6.4</pax-logging.version>
+        <pax-wicket.version>1.1.0</pax-wicket.version>
+        <scala.version>2.9.1</scala.version>
+        <scala-plugin.version>2.15.2</scala-plugin.version>
+        <servicemix-nmr.version>1.4.0</servicemix-nmr.version>
+        <slf4j.version>1.6.1</slf4j.version>
     </properties>
 
     <modules>
@@ -82,6 +96,34 @@
                         <target>1.5</target>
                     </configuration>
                 </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-surefire-plugin</artifactId>
+                    <version>2.9</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.felix</groupId>
+                    <artifactId>maven-bundle-plugin</artifactId>
+                    <version>${maven-bundle.version}</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.scala-tools</groupId>
+                    <artifactId>maven-scala-plugin</artifactId>
+                    <version>${scala-plugin.version}</version>
+                    <executions>
+                        <execution>
+                            <goals>
+                                <goal>compile</goal>
+                                <goal>testCompile</goal>
+                            </goals>
+                        </execution>
+                    </executions>
+                </plugin>
+                <plugin>
+                    <groupId>org.mortbay.jetty</groupId>
+                    <artifactId>jetty-maven-plugin</artifactId>
+                    <version>${jetty-plugin.version}</version>
+                </plugin>
             </plugins>
         </pluginManagement>
     </build>
@@ -113,6 +155,232 @@
 
     <dependencyManagement>
         <dependencies>
+            <!-- features descriptor -->
+            <dependency>
+                <groupId>org.apache.karaf.webconsole</groupId>
+                <artifactId>apache-karaf-webconsole</artifactId>
+                <version>${project.version}</version>
+                <classifier>features</classifier>
+                <type>xml</type>
+            </dependency>
+            <!-- WebConsole artifacts -->
+            <dependency>
+                <groupId>org.apache.karaf.webconsole</groupId>
+                <artifactId>org.apache.karaf.webconsole.core</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <!-- WebConsole OSGi artifacts -->
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.osgi</groupId>
+                <artifactId>org.apache.karaf.webconsole.osgi.log</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.osgi</groupId>
+                <artifactId>org.apache.karaf.webconsole.osgi.config</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.osgi</groupId>
+                <artifactId>org.apache.karaf.webconsole.osgi.blueprint</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.osgi</groupId>
+                <artifactId>org.apache.karaf.webconsole.osgi.event</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.osgi</groupId>
+                <artifactId>org.apache.karaf.webconsole.osgi.scr</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.osgi</groupId>
+                <artifactId>org.apache.karaf.webconsole.osgi.core</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <!-- WebConsole Karaf artifacts -->
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.karaf</groupId>
+                <artifactId>org.apache.karaf.webconsole.karaf.core</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.karaf</groupId>
+                <artifactId>org.apache.karaf.webconsole.karaf.admin</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.karaf</groupId>
+                <artifactId>org.apache.karaf.webconsole.karaf.feature</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <!--  WebConsole misc artifacts -->
+            <dependency>
+                <groupId>org.apache.karaf.webconsole</groupId>
+                <artifactId>org.apache.karaf.webconsole.camel</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole</groupId>
+                <artifactId>org.apache.karaf.webconsole.cxf</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole</groupId>
+                <artifactId>org.apache.karaf.webconsole.servicemix</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole</groupId>
+                <artifactId>itest</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole</groupId>
+                <artifactId>manual</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <!-- WebConsole example artifacts -->
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.examples</groupId>
+                <artifactId>branding</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.examples.events</groupId>
+                <artifactId>consumer</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.examples.events</groupId>
+                <artifactId>provider</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.examples</groupId>
+                <artifactId>scala</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.webconsole.examples</groupId>
+                <artifactId>org.apache.karaf.webconsole.examples.scr</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+
+            <!-- Aries -->
+            <dependency>
+                <groupId>org.apache.aries.blueprint</groupId>
+                <artifactId>org.apache.aries.blueprint</artifactId>
+                <version>${aries-blueprint.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.aries.proxy</groupId>
+                <artifactId>org.apache.aries.proxy.impl</artifactId>
+                <version>${aries-proxy.version}</version>
+            </dependency>
+
+            <!-- ServiceMix -->
+            <dependency>
+                <groupId>org.apache.servicemix.nmr</groupId>
+                <artifactId>org.apache.servicemix.nmr.api</artifactId>
+                <version>${servicemix-nmr.version}</version>
+            </dependency>
+
+            <!-- Camel -->
+            <dependency>
+                <groupId>org.apache.camel</groupId>
+                <artifactId>camel-core</artifactId>
+                <version>${camel.version}</version>
+            </dependency>
+
+            <!-- CXF -->
+            <dependency>
+                <groupId>org.apache.cxf</groupId>
+                <artifactId>cxf-rt-core</artifactId>
+                <version>${cxf.version}</version>
+            </dependency>
+
+            <!-- Scala -->
+            <dependency>
+                <groupId>org.scala-lang</groupId>
+                <artifactId>scala-library</artifactId>
+                <version>${scala.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.scala-lang</groupId>
+                <artifactId>scala-compiler</artifactId>
+                <version>${scala.version}</version>
+            </dependency>
+
+            <!-- Wicket and Pax Wicket -->
+            <dependency>
+                <groupId>org.ops4j.pax.wicket</groupId>
+                <artifactId>org.ops4j.pax.wicket.service</artifactId>
+                <version>${pax-wicket.version}</version>
+            </dependency>
+               <dependency>
+                <groupId>org.ops4j.pax.wicket</groupId>
+                <artifactId>org.ops4j.pax.wicket.test</artifactId>
+                <version>${pax-wicket.version}</version>
+                <scope>test</scope>
+            </dependency>
+
+            <!-- logging stuff -->
+            <dependency>
+                <groupId>org.slf4j</groupId>
+                <artifactId>slf4j-api</artifactId>
+                <version>${slf4j.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.slf4j</groupId>
+                <artifactId>slf4j-log4j12</artifactId>
+                <version>${slf4j.version}</version>
+            </dependency>
+
+            <!-- Pax Logging -->
+            <dependency>
+                <groupId>org.ops4j.pax.logging</groupId>
+                <artifactId>pax-logging-api</artifactId>
+                <version>${pax-logging.version}</version>
+                <scope>provided</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.ops4j.pax.logging</groupId>
+                <artifactId>pax-logging-service</artifactId>
+                <version>${pax-logging.version}</version>
+                <scope>provided</scope>
+            </dependency>
+
+            <!-- Karaf .. -->
+            <dependency>
+                <groupId>org.apache.karaf.jaas</groupId>
+                <artifactId>org.apache.karaf.jaas.modules</artifactId>
+                <version>${karaf.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf</groupId>
+                <artifactId>karaf</artifactId>
+                <version>${karaf.version}</version>
+                <type>pom</type>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.features</groupId>
+                <artifactId>org.apache.karaf.features.core</artifactId>
+                <version>${karaf.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.admin</groupId>
+                <artifactId>org.apache.karaf.admin.core</artifactId>
+                <version>${karaf.version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>org.apache.felix.framework</artifactId>
+                <version>${felix-framework.version}</version>
+            </dependency>
             <dependency>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>org.apache.felix.metatype</artifactId>
@@ -125,9 +393,32 @@
             </dependency>
             <dependency>
                 <groupId>org.apache.felix</groupId>
+                <artifactId>org.apache.felix.configadmin</artifactId>
+                <version>${felix-config.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.felix</groupId>
                 <artifactId>org.apache.felix.scr</artifactId>
                 <version>${felix-scr.version}</version>
             </dependency>
+            <dependency>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>org.apache.felix.utils</artifactId>
+                <version>${felix-utils.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>org.apache.felix.http.bridge</artifactId>
+                <version>${felix-http.version}</version>
+                <scope>provided</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>org.apache.felix.http.proxy</artifactId>
+                <version>${felix-http.version}</version>
+            </dependency>
+    
+                
 
             <dependency>
                 <groupId>org.osgi</groupId>
@@ -139,6 +430,39 @@
                 <artifactId>org.osgi.compendium</artifactId>
                 <version>${osgi.version}</version>
             </dependency>
+
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-servlet_2.5_spec</artifactId>
+                <version>1.2</version>
+                <scope>provided</scope>
+            </dependency>
+
+            <!-- testing -->
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>${junit.version}</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.easymock</groupId>
+                <artifactId>easymock</artifactId>
+                <version>${easymock.version}</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.openengsb.labs.paxexam.karaf</groupId>
+                <artifactId>paxexam-karaf-container</artifactId>
+                <version>${pax-exam-karaf.version}</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.ops4j.pax.exam</groupId>
+                <artifactId>pax-exam-junit4</artifactId>
+                <version>${pax-exam-junit.version}</version>
+                <scope>test</scope>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
diff --git a/servicemix/pom.xml b/servicemix/pom.xml
index 5f04bfd..4121adc 100644
--- a/servicemix/pom.xml
+++ b/servicemix/pom.xml
@@ -34,49 +34,18 @@
         <dependency>
             <groupId>org.apache.karaf.webconsole</groupId>
             <artifactId>org.apache.karaf.webconsole.core</artifactId>
-            <version>${project.version}</version>
         </dependency>
-
         <dependency>
             <groupId>org.apache.servicemix.nmr</groupId>
             <artifactId>org.apache.servicemix.nmr.api</artifactId>
-            <version>${nmr.version}</version>
         </dependency>
-
-        <!--
-        <dependency>
-            <groupId>org.scala-lang</groupId>
-            <artifactId>scala-library</artifactId>
-            <version>2.9.0</version>
-        </dependency>
-        -->
- 
     </dependencies>
 
     <build>
-        <!--
-        <sourceDirectory>src/main/scala</sourceDirectory>
-        -->
         <plugins>
-            <!--
-            <plugin>
-                <groupId>org.scala-tools</groupId>
-                <artifactId>maven-scala-plugin</artifactId>
-                <version>2.15.2</version>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>compile</goal>
-                            <goal>testCompile</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            -->
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>${maven-bundle.version}</version>
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
diff --git a/web/pom.xml b/web/pom.xml
index 9aed9d1..32c5a18 100644
--- a/web/pom.xml
+++ b/web/pom.xml
@@ -30,38 +30,13 @@
 
     <dependencies>
         <dependency>
-            <groupId>org.apache.karaf.webconsole</groupId>
-            <artifactId>org.apache.karaf.webconsole.core</artifactId>
-            <version>${project.version}</version>
-            <scope>provided</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.felix</groupId>
-            <artifactId>org.apache.felix.http.bridge</artifactId>
-            <version>2.2.0</version>
-            <scope>provided</scope>
-        </dependency>
-
-        <dependency>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.framework</artifactId>
-            <version>4.0.2</version>
         </dependency>
-
         <dependency>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.http.proxy</artifactId>
-            <version>2.2.0</version>
         </dependency>
-
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-            <version>2.5</version>
-            <scope>provided</scope>
-        </dependency>
-
         <dependency>
             <groupId>org.osgi</groupId>
             <artifactId>org.osgi.core</artifactId>
@@ -70,51 +45,56 @@
             <groupId>org.osgi</groupId>
             <artifactId>org.osgi.compendium</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
 
         <dependency>
+            <groupId>org.apache.karaf.webconsole</groupId>
+            <artifactId>org.apache.karaf.webconsole.core</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.http.bridge</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-servlet_2.5_spec</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
             <groupId>org.ops4j.pax.wicket</groupId>
             <artifactId>org.ops4j.pax.wicket.service</artifactId>
-            <version>${ops4j.paxwicket.version}</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.ops4j.pax.logging</groupId>
             <artifactId>pax-logging-api</artifactId>
-            <version>1.6.4</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.ops4j.pax.logging</groupId>
             <artifactId>pax-logging-service</artifactId>
-            <version>1.6.4</version>
             <scope>provided</scope>
         </dependency>
-
         <dependency>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.configadmin</artifactId>
-            <version>1.2.8</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.prefs</artifactId>
-            <version>1.0.4</version>
             <scope>provided</scope>
         </dependency>
-
         <dependency>
             <groupId>org.apache.aries.proxy</groupId>
             <artifactId>org.apache.aries.proxy.impl</artifactId>
-            <version>0.3</version>
             <scope>provided</scope>
         </dependency>
-
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-            <version>${slf4j.version}</version>
-        </dependency>
     </dependencies>
 
     <build>
@@ -153,7 +133,6 @@
             <plugin>
                 <groupId>org.mortbay.jetty</groupId>
                 <artifactId>jetty-maven-plugin</artifactId>
-                <version>7.5.4.v20111024</version>
                 <configuration>
                     <scanIntervalSeconds>10</scanIntervalSeconds>
                     <webAppConfig>