CAMEL-7346: Remove redundant version specification

Remove redundant version specification from dependencies that are
already defined with the exact same version by their parents.

Signed-off-by: Gregor Zurowski <gre...@zurowski.org>


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/bdf3021d
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/bdf3021d
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/bdf3021d

Branch: refs/heads/master
Commit: bdf3021d0b9c19110088c93f9ad7b41d273930c0
Parents: 29dee17
Author: Gregor Zurowski <gre...@zurowski.org>
Authored: Sun Apr 6 18:39:51 2014 -0400
Committer: Gregor Zurowski <gre...@zurowski.org>
Committed: Sun Apr 6 22:01:06 2014 -0400

----------------------------------------------------------------------
 camel-core/pom.xml                                               | 1 -
 components/camel-cxf-transport/pom.xml                           | 2 --
 components/camel-cxf/pom.xml                                     | 1 -
 components/camel-disruptor/pom.xml                               | 1 -
 components/camel-dozer/pom.xml                                   | 2 --
 components/camel-hbase/pom.xml                                   | 2 --
 components/camel-hdfs/pom.xml                                    | 1 -
 components/camel-http/pom.xml                                    | 1 -
 components/camel-ical/pom.xml                                    | 2 --
 components/camel-jetty/pom.xml                                   | 3 ---
 components/camel-jpa/pom.xml                                     | 1 -
 components/camel-netty/pom.xml                                   | 1 -
 .../camel-salesforce/camel-salesforce-maven-plugin/pom.xml       | 4 ----
 components/camel-servlet/pom.xml                                 | 1 -
 components/camel-solr/pom.xml                                    | 3 ---
 components/camel-spring-javaconfig/pom.xml                       | 1 -
 components/camel-spring-ws/pom.xml                               | 1 -
 components/camel-stomp/pom.xml                                   | 4 ----
 components/camel-test-blueprint/pom.xml                          | 2 --
 components/camel-web/pom.xml                                     | 2 --
 components/camel-websocket/pom.xml                               | 3 ---
 examples/camel-example-activemq-tomcat/pom.xml                   | 1 -
 examples/camel-example-cxf-tomcat/pom.xml                        | 1 -
 examples/camel-example-cxf/pom.xml                               | 1 -
 examples/camel-example-gauth/pom.xml                             | 1 -
 examples/camel-example-osgi/pom.xml                              | 1 -
 examples/camel-example-ssh-security/pom.xml                      | 3 ---
 examples/camel-example-ssh/pom.xml                               | 3 ---
 platforms/karaf/features/pom.xml                                 | 3 ---
 tests/camel-itest-karaf/pom.xml                                  | 1 -
 tests/camel-itest-osgi/pom.xml                                   | 2 --
 tooling/apt/pom.xml                                              | 2 --
 32 files changed, 58 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/camel-core/pom.xml
----------------------------------------------------------------------
diff --git a/camel-core/pom.xml b/camel-core/pom.xml
index 45968a2..f968cc6 100644
--- a/camel-core/pom.xml
+++ b/camel-core/pom.xml
@@ -137,7 +137,6 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-cxf-transport/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-cxf-transport/pom.xml 
b/components/camel-cxf-transport/pom.xml
index ad61343..8885d95 100644
--- a/components/camel-cxf-transport/pom.xml
+++ b/components/camel-cxf-transport/pom.xml
@@ -94,7 +94,6 @@
     <dependency>
       <groupId>org.apache.aries.blueprint</groupId>
       <artifactId>org.apache.aries.blueprint.core</artifactId>
-      <version>${aries-blueprint-core-version}</version>
       <scope>provided</scope>
     </dependency>
     
@@ -172,7 +171,6 @@
       <plugin>
         <groupId>org.apache.cxf</groupId>
         <artifactId>cxf-codegen-plugin</artifactId>
-        <version>${cxf-version}</version>
         <executions>
           <execution>
             <id>generate-test-sources</id>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-cxf/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-cxf/pom.xml b/components/camel-cxf/pom.xml
index f5e6871..5f73f95 100644
--- a/components/camel-cxf/pom.xml
+++ b/components/camel-cxf/pom.xml
@@ -145,7 +145,6 @@
     <dependency>
       <groupId>org.apache.aries.blueprint</groupId>
       <artifactId>org.apache.aries.blueprint</artifactId>
-      <version>${aries-blueprint-core-version}</version>
       <scope>provided</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-disruptor/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-disruptor/pom.xml 
b/components/camel-disruptor/pom.xml
index f5346d9..870bdb6 100644
--- a/components/camel-disruptor/pom.xml
+++ b/components/camel-disruptor/pom.xml
@@ -46,7 +46,6 @@
         <dependency>
             <groupId>com.lmax</groupId>
             <artifactId>disruptor</artifactId>
-            <version>${disruptor-version}</version>
         </dependency>
 
         <!-- Test dependencies -->

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-dozer/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-dozer/pom.xml b/components/camel-dozer/pom.xml
index 588e1f2..ddb1d1e 100644
--- a/components/camel-dozer/pom.xml
+++ b/components/camel-dozer/pom.xml
@@ -41,9 +41,7 @@
         <dependency>
             <groupId>net.sf.dozer</groupId>
             <artifactId>dozer</artifactId>
-            <version>${dozer-version}</version>
         </dependency>
-
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-test-spring</artifactId>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-hbase/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-hbase/pom.xml b/components/camel-hbase/pom.xml
index 68c59ce..c23dec5 100644
--- a/components/camel-hbase/pom.xml
+++ b/components/camel-hbase/pom.xml
@@ -94,7 +94,6 @@
         <dependency>
             <groupId>commons-collections</groupId>
             <artifactId>commons-collections</artifactId>
-            <version>${commons-collections-version}</version>
         </dependency>
         <dependency>
             <groupId>commons-configuration</groupId>
@@ -146,7 +145,6 @@
         <dependency>
             <groupId>org.apache.zookeeper</groupId>
             <artifactId>zookeeper</artifactId>
-            <version>${zookeeper-version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-hdfs/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-hdfs/pom.xml b/components/camel-hdfs/pom.xml
index c33b772..2894784 100644
--- a/components/camel-hdfs/pom.xml
+++ b/components/camel-hdfs/pom.xml
@@ -86,7 +86,6 @@
         <dependency>
             <groupId>commons-collections</groupId>
             <artifactId>commons-collections</artifactId>
-            <version>${commons-collections-version}</version>
         </dependency>
         <dependency>
             <groupId>commons-configuration</groupId>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-http/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-http/pom.xml b/components/camel-http/pom.xml
index e94b041..13aaf16 100644
--- a/components/camel-http/pom.xml
+++ b/components/camel-http/pom.xml
@@ -54,7 +54,6 @@
     <dependency>
       <groupId>commons-httpclient</groupId>
       <artifactId>commons-httpclient</artifactId>
-      <version>${httpclient-version}</version>
       <exclusions>
         <exclusion>
           <groupId>commons-codec</groupId>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-ical/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-ical/pom.xml b/components/camel-ical/pom.xml
index 454ab08..3d451df 100644
--- a/components/camel-ical/pom.xml
+++ b/components/camel-ical/pom.xml
@@ -46,7 +46,6 @@
     <dependency>
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-core</artifactId>
-      <version>${project.version}</version>
     </dependency>
     <dependency>
       <groupId>org.mnode.ical4j</groupId>
@@ -56,7 +55,6 @@
     <dependency>
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-test</artifactId>
-      <version>${project.version}</version>
       <scope>test</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-jetty/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-jetty/pom.xml b/components/camel-jetty/pom.xml
index d8ab336..be65b67 100644
--- a/components/camel-jetty/pom.xml
+++ b/components/camel-jetty/pom.xml
@@ -68,7 +68,6 @@
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-servlet</artifactId>
-            <version>${jetty-version}</version>
         </dependency>
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
@@ -77,7 +76,6 @@
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-servlets</artifactId>
-            <version>${jetty-version}</version>
         </dependency>
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
@@ -86,7 +84,6 @@
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-jmx</artifactId>
-            <version>${jetty-version}</version>
         </dependency>
         
         <!-- test dependencies -->

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-jpa/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-jpa/pom.xml b/components/camel-jpa/pom.xml
index c578cc2..0ae0a00 100644
--- a/components/camel-jpa/pom.xml
+++ b/components/camel-jpa/pom.xml
@@ -105,7 +105,6 @@
     <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-entitymanager</artifactId>
-       <version>${hibernate-version}</version>
        <scope>test</scope>
     </dependency>
   </dependencies>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-netty/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-netty/pom.xml b/components/camel-netty/pom.xml
index 7b2830b..914bd0e 100644
--- a/components/camel-netty/pom.xml
+++ b/components/camel-netty/pom.xml
@@ -48,7 +48,6 @@
         <dependency>
             <groupId>commons-pool</groupId>
             <artifactId>commons-pool</artifactId>
-            <version>${commons-pool-version}</version>
         </dependency>
 
                <!-- testing -->

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-salesforce/camel-salesforce-maven-plugin/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-salesforce/camel-salesforce-maven-plugin/pom.xml 
b/components/camel-salesforce/camel-salesforce-maven-plugin/pom.xml
index 0581984..320ebf1 100644
--- a/components/camel-salesforce/camel-salesforce-maven-plugin/pom.xml
+++ b/components/camel-salesforce/camel-salesforce-maven-plugin/pom.xml
@@ -51,7 +51,6 @@
     <dependency>
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-salesforce</artifactId>
-      <version>${project.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.velocity</groupId>
@@ -63,12 +62,10 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
-      <version>${slf4j-api-version}</version>
     </dependency>
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
-      <version>${log4j-version}</version>
     </dependency>
 
     <!-- testing -->
@@ -87,7 +84,6 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-servlet/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-servlet/pom.xml b/components/camel-servlet/pom.xml
index 80f2d7b..4cb0a95 100644
--- a/components/camel-servlet/pom.xml
+++ b/components/camel-servlet/pom.xml
@@ -56,7 +56,6 @@
     <dependency>
       <groupId>org.osgi</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${osgi-version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-solr/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-solr/pom.xml b/components/camel-solr/pom.xml
index a9e1cf3..fe4b4c4 100644
--- a/components/camel-solr/pom.xml
+++ b/components/camel-solr/pom.xml
@@ -89,19 +89,16 @@
     <dependency>
       <groupId>org.eclipse.jetty</groupId>
       <artifactId>jetty-server</artifactId>
-      <version>${jetty-version}</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.eclipse.jetty</groupId>
       <artifactId>jetty-servlet</artifactId>
-      <version>${jetty-version}</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>xml-apis</groupId>
       <artifactId>xml-apis</artifactId>
-      <version>${xml-apis-version}</version>
       <scope>test</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-spring-javaconfig/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-spring-javaconfig/pom.xml 
b/components/camel-spring-javaconfig/pom.xml
index 2c3246f..038d97f 100644
--- a/components/camel-spring-javaconfig/pom.xml
+++ b/components/camel-spring-javaconfig/pom.xml
@@ -51,7 +51,6 @@
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-test</artifactId>
-      <version>${spring-version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.servicemix.bundles</groupId>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-spring-ws/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-spring-ws/pom.xml 
b/components/camel-spring-ws/pom.xml
index ab306de..9e01e79 100644
--- a/components/camel-spring-ws/pom.xml
+++ b/components/camel-spring-ws/pom.xml
@@ -72,7 +72,6 @@
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-servlet_3.0_spec</artifactId>
-            <version>${geronimo-servlet-spec-version}</version>
             <scope>provided</scope>
         </dependency>
 

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-stomp/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-stomp/pom.xml b/components/camel-stomp/pom.xml
index dc506e2..6637a0c 100644
--- a/components/camel-stomp/pom.xml
+++ b/components/camel-stomp/pom.xml
@@ -55,7 +55,6 @@
     <dependency>
       <groupId>org.apache.activemq</groupId>
       <artifactId>activemq-broker</artifactId>
-      <version>${activemq-version}</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -67,19 +66,16 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>${junit-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>com.thoughtworks.xstream</groupId>
       <artifactId>xstream</artifactId>
-      <version>${xstream-version}</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-test-blueprint/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-test-blueprint/pom.xml 
b/components/camel-test-blueprint/pom.xml
index 3045bbd..363db78 100644
--- a/components/camel-test-blueprint/pom.xml
+++ b/components/camel-test-blueprint/pom.xml
@@ -62,7 +62,6 @@
         <dependency>
             <groupId>org.apache.aries.blueprint</groupId>
             <artifactId>org.apache.aries.blueprint</artifactId>
-          <version>${aries-blueprint-core-version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.aries</groupId>
@@ -97,7 +96,6 @@
         <dependency>
             <groupId>org.ops4j.pax.swissbox</groupId>
             <artifactId>pax-swissbox-tinybundles</artifactId>
-            <version>${pax-tiny-bundle-version}</version>
         </dependency>
         <dependency>
             <groupId>commons-logging</groupId>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-web/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-web/pom.xml b/components/camel-web/pom.xml
index 01d311c..d41e41f 100644
--- a/components/camel-web/pom.xml
+++ b/components/camel-web/pom.xml
@@ -179,7 +179,6 @@
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-webapp</artifactId>
-            <version>${jetty-version}</version>
             <scope>test</scope>
         </dependency>
 
@@ -255,7 +254,6 @@
             <plugin>
                 <groupId>org.mortbay.jetty</groupId>
                 <artifactId>jetty-maven-plugin</artifactId>
-                <version>${jetty-version}</version>
                 <configuration>
                     <!--
                              <connectors> <connector 
implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/components/camel-websocket/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-websocket/pom.xml 
b/components/camel-websocket/pom.xml
index ae71493..7ab0507 100644
--- a/components/camel-websocket/pom.xml
+++ b/components/camel-websocket/pom.xml
@@ -59,17 +59,14 @@
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-servlet</artifactId>
-            <version>${jetty-version}</version>
         </dependency>
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-servlets</artifactId>
-            <version>${jetty-version}</version>
         </dependency>
         <dependency>
             <groupId>org.eclipse.jetty</groupId>
             <artifactId>jetty-jmx</artifactId>
-            <version>${jetty-version}</version>
         </dependency>
         
         <!-- test dependencies -->

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/examples/camel-example-activemq-tomcat/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-activemq-tomcat/pom.xml 
b/examples/camel-example-activemq-tomcat/pom.xml
index 8edc81f..177ef1c 100755
--- a/examples/camel-example-activemq-tomcat/pom.xml
+++ b/examples/camel-example-activemq-tomcat/pom.xml
@@ -35,7 +35,6 @@
                        <plugin>
                                <groupId>org.codehaus.mojo</groupId>
                                <artifactId>tomcat-maven-plugin</artifactId>
-                               <version>1.1</version>
                                <configuration>
                                        <server>myTomcat</server>
                                        <url>${tomcat.url}</url>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/examples/camel-example-cxf-tomcat/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-cxf-tomcat/pom.xml 
b/examples/camel-example-cxf-tomcat/pom.xml
index 38c75e6..eaa48d4 100755
--- a/examples/camel-example-cxf-tomcat/pom.xml
+++ b/examples/camel-example-cxf-tomcat/pom.xml
@@ -35,7 +35,6 @@
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>tomcat-maven-plugin</artifactId>
-                <version>1.1</version>
                 <configuration>
                     <server>myTomcat</server>
                     <url>${tomcat.url}</url>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/examples/camel-example-cxf/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-cxf/pom.xml 
b/examples/camel-example-cxf/pom.xml
index 7ac8b12..e761867 100644
--- a/examples/camel-example-cxf/pom.xml
+++ b/examples/camel-example-cxf/pom.xml
@@ -109,7 +109,6 @@
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
-            <version>${geronimo-j2ee-connector-spec-version}</version>
             <scope>provided</scope>
         </dependency>
 

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/examples/camel-example-gauth/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-gauth/pom.xml 
b/examples/camel-example-gauth/pom.xml
index 664976e..69b65dd 100644
--- a/examples/camel-example-gauth/pom.xml
+++ b/examples/camel-example-gauth/pom.xml
@@ -57,7 +57,6 @@
         <dependency>
           <groupId>org.springframework</groupId>
           <artifactId>spring-web</artifactId>
-          <version>${spring-version}</version>
         </dependency>
         <dependency>
             <groupId>org.springframework</groupId>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/examples/camel-example-osgi/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-osgi/pom.xml 
b/examples/camel-example-osgi/pom.xml
index 82f1003..c90a195 100644
--- a/examples/camel-example-osgi/pom.xml
+++ b/examples/camel-example-osgi/pom.xml
@@ -48,7 +48,6 @@
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-simple</artifactId>
-            <version>${slf4j-version}</version>
         </dependency>
 
        </dependencies>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/examples/camel-example-ssh-security/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-ssh-security/pom.xml 
b/examples/camel-example-ssh-security/pom.xml
index 2add587..2450d59 100644
--- a/examples/camel-example-ssh-security/pom.xml
+++ b/examples/camel-example-ssh-security/pom.xml
@@ -80,13 +80,11 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
-      <version>${slf4j-version}</version>
       <scope>runtime</scope>
     </dependency>
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
-      <version>${log4j-version}</version>
       <scope>runtime</scope>
     </dependency>
 
@@ -104,7 +102,6 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/examples/camel-example-ssh/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-ssh/pom.xml 
b/examples/camel-example-ssh/pom.xml
index 5591844..67ae0ff 100644
--- a/examples/camel-example-ssh/pom.xml
+++ b/examples/camel-example-ssh/pom.xml
@@ -62,13 +62,11 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
-      <version>${slf4j-version}</version>
       <scope>runtime</scope>
     </dependency>
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
-      <version>${log4j-version}</version>
       <scope>runtime</scope>
     </dependency>
 
@@ -86,7 +84,6 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/platforms/karaf/features/pom.xml
----------------------------------------------------------------------
diff --git a/platforms/karaf/features/pom.xml b/platforms/karaf/features/pom.xml
index 46c26a4..6b55778 100644
--- a/platforms/karaf/features/pom.xml
+++ b/platforms/karaf/features/pom.xml
@@ -39,7 +39,6 @@
     <dependency>
       <groupId>org.osgi</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${osgi-version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
@@ -63,13 +62,11 @@
     <dependency>
       <groupId>org.apache.felix</groupId>
       <artifactId>org.apache.felix.configadmin</artifactId>
-      <version>${felix-configadmin-version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.aries.blueprint</groupId>
       <artifactId>org.apache.aries.blueprint</artifactId>
-      <version>${aries-blueprint-core-version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/tests/camel-itest-karaf/pom.xml
----------------------------------------------------------------------
diff --git a/tests/camel-itest-karaf/pom.xml b/tests/camel-itest-karaf/pom.xml
index ed480cd..50f9264 100644
--- a/tests/camel-itest-karaf/pom.xml
+++ b/tests/camel-itest-karaf/pom.xml
@@ -76,7 +76,6 @@
         <dependency>
             <groupId>org.osgi</groupId>
             <artifactId>org.osgi.core</artifactId>
-            <version>${osgi-version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/tests/camel-itest-osgi/pom.xml
----------------------------------------------------------------------
diff --git a/tests/camel-itest-osgi/pom.xml b/tests/camel-itest-osgi/pom.xml
index e152c3b..971c115 100644
--- a/tests/camel-itest-osgi/pom.xml
+++ b/tests/camel-itest-osgi/pom.xml
@@ -78,14 +78,12 @@
     <dependency>
       <groupId>org.osgi</groupId>
       <artifactId>org.osgi.compendium</artifactId>
-      <version>${osgi-version}</version>
       <scope>compile</scope>
       <optional>true</optional>
     </dependency> 
     <dependency>
       <groupId>org.osgi</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>${osgi-version}</version>
       <scope>test</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/camel/blob/bdf3021d/tooling/apt/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/apt/pom.xml b/tooling/apt/pom.xml
index c0ebb8a..30aef0b 100644
--- a/tooling/apt/pom.xml
+++ b/tooling/apt/pom.xml
@@ -48,7 +48,6 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
 
@@ -65,7 +64,6 @@
       <plugins>
         <plugin>
           <artifactId>maven-compiler-plugin</artifactId>
-          <version>${maven-compiler-plugin-version}</version>
           <configuration>
             <source>1.6</source>
             <target>1.6</target>

Reply via email to