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:29:35 UTC

svn commit: r1034449 - /servicemix/components/bindings/servicemix-ftp/trunk/pom.xml

Author: jbonofre
Date: Fri Nov 12 16:29:35 2010
New Revision: 1034449

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

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

Modified: servicemix/components/bindings/servicemix-ftp/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-ftp/trunk/pom.xml?rev=1034449&r1=1034448&r2=1034449&view=diff
==============================================================================
--- servicemix/components/bindings/servicemix-ftp/trunk/pom.xml (original)
+++ servicemix/components/bindings/servicemix-ftp/trunk/pom.xml Fri Nov 12 16:29:35 2010
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 
     <!--
 
@@ -43,6 +43,7 @@
     </scm>
 
     <properties>
+        <backport-util-concurrent.version>3.1</backport-util-concurrent.version>
         <commons-net.version>1.4.1</commons-net.version>
         <commons-pool.version>1.5.4</commons-pool.version>
         <ftpserver.version>1.0.4</ftpserver.version>
@@ -73,14 +74,9 @@
 
     <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>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>        
         <dependency>
             <groupId>commons-net</groupId>
             <artifactId>commons-net</artifactId>
@@ -92,39 +88,43 @@
             <version>${commons-pool.version}</version>
         </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>
+        <dependency>
             <groupId>oro</groupId>
             <artifactId>oro</artifactId>
             <version>${oro.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>commons-logging</groupId>
-            <artifactId>commons-logging</artifactId>
-        </dependency>
+        </dependency>        
+
+        <!-- provided -->
         <dependency>
-            <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-jta_1.1_spec</artifactId>
+            <groupId>org.apache.servicemix.specs</groupId>
+            <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId>
+            <scope>provided</scope>
         </dependency>
-        <!-- for unit/integration testing -->
+
+        <!-- testing -->
+        <!-- adding this for the Arrays.copyOfRange() method that's not available by default in Java 5 -->
         <dependency>
-            <groupId>org.apache.servicemix</groupId>
-            <artifactId>servicemix-core</artifactId>
+            <groupId>backport-util-concurrent</groupId>
+            <artifactId>backport-util-concurrent</artifactId>
+            <version>${backport-util-concurrent.version}</version>
             <scope>test</scope>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.springframework</groupId>
-                    <artifactId>spring-jmx</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
+        </dependency>        
         <dependency>
             <groupId>org.apache.ftpserver</groupId>
-            <artifactId>ftpserver-core</artifactId>
+            <artifactId>ftplet-api</artifactId>
             <version>${ftpserver.version}</version>
             <scope>test</scope>
-        </dependency>
+        </dependency>        
         <dependency>
             <groupId>org.apache.ftpserver</groupId>
-            <artifactId>ftplet-api</artifactId>
+            <artifactId>ftpserver-core</artifactId>
             <version>${ftpserver.version}</version>
             <scope>test</scope>
         </dependency>
@@ -143,18 +143,21 @@
                     <artifactId>easymockclassextension</artifactId>
                 </exclusion>
             </exclusions>
-        </dependency>
+        </dependency>        
         <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-jcl</artifactId>
+            <groupId>org.apache.servicemix</groupId>
+            <artifactId>servicemix-core</artifactId>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.springframework</groupId>
+                    <artifactId>spring-jmx</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
-
-        <!-- adding this for the Arrays.copyOfRange() method that's not available by default in Java 5 -->
         <dependency>
-            <groupId>backport-util-concurrent</groupId>
-            <artifactId>backport-util-concurrent</artifactId>
-            <version>3.1</version>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-jcl</artifactId>
             <scope>test</scope>
         </dependency>
     </dependencies>