You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2010/11/12 17:22:18 UTC

svn commit: r1034447 - /servicemix/components/bindings/servicemix-file/trunk/pom.xml

Author: jbonofre
Date: Fri Nov 12 16:22:18 2010
New Revision: 1034447

URL: http://svn.apache.org/viewvc?rev=1034447&view=rev
Log:
Cleanup POM.

Modified:
    servicemix/components/bindings/servicemix-file/trunk/pom.xml

Modified: servicemix/components/bindings/servicemix-file/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-file/trunk/pom.xml?rev=1034447&r1=1034446&r2=1034447&view=diff
==============================================================================
--- servicemix/components/bindings/servicemix-file/trunk/pom.xml (original)
+++ servicemix/components/bindings/servicemix-file/trunk/pom.xml Fri Nov 12 16:22:18 2010
@@ -42,6 +42,8 @@
     </scm>
 
     <properties>
+        <backport-util-concurrent.version>3.1</backport-util-concurrent.version>
+
         <servicemix.osgi.import>
             !org.apache.servicemix.file*,
             !META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.file,
@@ -66,31 +68,44 @@
 
     <dependencies>
         <dependency>
-            <groupId>org.apache.servicemix</groupId>
-            <artifactId>servicemix-shared</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.servicemix.specs</groupId>
-            <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
             <groupId>commons-logging</groupId>
             <artifactId>commons-logging</artifactId>
         </dependency>
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-jta_1.1_spec</artifactId>
+        </dependency>        
+        <dependency>
+            <groupId>org.apache.servicemix</groupId>
+            <artifactId>servicemix-shared</artifactId>
         </dependency>
-        <!-- for unit/integration testing -->
+
+        <!-- provided -->
+        <!-- include servicemix-common as a source for the XSD documentation generator -->
         <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
+            <groupId>org.apache.servicemix</groupId>
+            <artifactId>servicemix-common</artifactId>
+            <version>${servicemix-shared.version}</version>
+            <classifier>sources</classifier>
+            <scope>provided</scope>
+            <optional>true</optional>
+        </dependency>        
+        <dependency>
+            <groupId>org.apache.servicemix.specs</groupId>
+            <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId>
+            <scope>provided</scope>
         </dependency>
+
+        <!-- testing -->
         <dependency>
             <groupId>backport-util-concurrent</groupId>
             <artifactId>backport-util-concurrent</artifactId>
-            <version>3.1</version>
+            <version>${backport-util-concurrent.version}</version>
+            <scope>test</scope>
+        </dependency>        
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
             <scope>test</scope>
         </dependency>
         <dependency>
@@ -104,16 +119,6 @@
                 </exclusion>
             </exclusions>
         </dependency>
-
-        <!-- include servicemix-common as a source for the XSD documentation generator -->
-        <dependency>
-            <groupId>org.apache.servicemix</groupId>
-            <artifactId>servicemix-common</artifactId>
-            <version>${servicemix-shared.version}</version>
-            <classifier>sources</classifier>
-            <scope>provided</scope>
-            <optional>true</optional>
-        </dependency>
     </dependencies>
 
     <build>