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/07 07:30:05 UTC

svn commit: r1032217 - in /servicemix/components/bindings/servicemix-ftp/trunk: .gitignore pom.xml

Author: jbonofre
Date: Sun Nov  7 06:30:05 2010
New Revision: 1032217

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

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

Added: servicemix/components/bindings/servicemix-ftp/trunk/.gitignore
URL: http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-ftp/trunk/.gitignore?rev=1032217&view=auto
==============================================================================
--- servicemix/components/bindings/servicemix-ftp/trunk/.gitignore (added)
+++ servicemix/components/bindings/servicemix-ftp/trunk/.gitignore Sun Nov  7 06:30:05 2010
@@ -0,0 +1,4 @@
+*.i??
+target
+.project
+.classpath
\ No newline at end of file

Modified: servicemix/components/bindings/servicemix-ftp/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-ftp/trunk/pom.xml?rev=1032217&r1=1032216&r2=1032217&view=diff
==============================================================================
--- servicemix/components/bindings/servicemix-ftp/trunk/pom.xml (original)
+++ servicemix/components/bindings/servicemix-ftp/trunk/pom.xml Sun Nov  7 06:30:05 2010
@@ -1,202 +1,211 @@
 <?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">
-<!--
 
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-  <modelVersion>4.0.0</modelVersion>
-  <parent>
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements.  See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version 2.0
+        (the "License"); you may not use this file except in compliance with
+        the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.servicemix</groupId>
+        <artifactId>components-pom</artifactId>
+        <version>6-SNAPSHOT</version>
+        <relativePath>../../components-pom/pom.xml</relativePath>
+    </parent>
+
     <groupId>org.apache.servicemix</groupId>
-    <artifactId>components-pom</artifactId>
-    <version>6-SNAPSHOT</version>
-    <relativePath>../../components-pom/pom.xml</relativePath>    
-  </parent>
-
-  <groupId>org.apache.servicemix</groupId>
-  <artifactId>servicemix-ftp</artifactId>
-  <version>2010.02-SNAPSHOT</version>
-  <packaging>jbi-component</packaging>
-
-  <name>Apache ServiceMix :: Components :: FTP Binding Component</name>
-
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-ftp/trunk</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-ftp/trunk</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/servicemix/components/bindings/servicemix-ftp/trunk</url>
-  </scm>
-
-  <properties>
-    <servicemix.osgi.import>
-        !org.apache.servicemix.ftp*,
-        !META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.ftp,
-        org.apache.servicemix.common,
-        org.apache.servicemix.common.osgi,
-        org.apache.servicemix.executors.impl,
-        org.apache.xbean.spring.context.v2,
-        org.springframework.beans.factory.xml,
-        sun.misc;resolution:=optional,
-        *
-    </servicemix.osgi.import>
-    <servicemix.osgi.export>
-        org.apache.servicemix.ftp*;version=${project.version},
-        META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.ftp
-    </servicemix.osgi.export>
-    <servicemix.osgi.bundles>
-        org.springframework.core,
-        org.springframework.beans,
-        org.springframework.context
-    </servicemix.osgi.bundles>
-  </properties>
-
-  <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-net</groupId>
-      <artifactId>commons-net</artifactId>
-      <version>1.4.1</version>
-    </dependency>
-    <dependency>
-      <groupId>commons-pool</groupId>
-      <artifactId>commons-pool</artifactId>
-      <version>1.5.4</version>
-    </dependency>
-    <dependency>
-      <groupId>oro</groupId>
-      <artifactId>oro</artifactId>
-      <version>2.0.8</version>      
-    </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>
-    <!-- for unit/integration testing -->
-    <dependency>
-      <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>
-    <dependency>
-      <groupId>org.apache.ftpserver</groupId>
-      <artifactId>ftpserver-core</artifactId>
-      <version>1.0.4</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.ftpserver</groupId>
-      <artifactId>ftplet-api</artifactId>
-      <version>1.0.4</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.mina</groupId>
-      <artifactId>mina-core</artifactId>
-      <version>2.0.0-RC1</version>
-      <exclusions>
-          <exclusion>
-              <groupId>org.easymock</groupId>
-              <artifactId>easymock</artifactId>
-          </exclusion>
-          <exclusion>
-              <groupId>org.easymock</groupId>
-              <artifactId>easymockclassextension</artifactId>
-          </exclusion>
-	    </exclusions>
-    </dependency>
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-jcl</artifactId>
-      <version>1.5.2</version>
-      <scope>test</scope>
-    </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>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-  
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.servicemix.tooling</groupId>
-        <artifactId>jbi-maven-plugin</artifactId>
-        <extensions>true</extensions>
-        <configuration>
-          <type>binding-component</type>
-          <component>org.apache.servicemix.ftp.FtpComponent</component>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.xbean</groupId>
-        <artifactId>maven-xbean-plugin</artifactId>
-        <executions>
-          <execution>
-            <goals>
-              <goal>mapping</goal>
-            </goals>
-            <configuration>
-              <namespace>http://servicemix.apache.org/ftp/1.0</namespace>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      <!-- exclude generated DefaultBootstrap class from Cobertura reports -->
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>cobertura-maven-plugin</artifactId>
-        <configuration>
-          <instrumentation>
-            <excludes>
-              <exclude>org/apache/servicemix/common/DefaultBootstrap.class</exclude>
-            </excludes>
-          </instrumentation>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-
-
-  <reporting>
-    <plugins>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>cobertura-maven-plugin</artifactId>
-      </plugin>
-    </plugins>
-  </reporting>
+    <artifactId>servicemix-ftp</artifactId>
+    <version>2010.02-SNAPSHOT</version>
+    <packaging>jbi-component</packaging>
+
+    <name>Apache ServiceMix :: Components :: FTP Binding Component</name>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-ftp/trunk
+        </connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-ftp/trunk</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/servicemix/components/bindings/servicemix-ftp/trunk</url>
+    </scm>
+
+    <properties>
+        <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>
+        <mina.version>2.0.0-RC1</mina.version>
+        <oro.version>2.0.8</oro.version>
+
+        <servicemix.osgi.import>
+            !org.apache.servicemix.ftp*,
+            !META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.ftp,
+            org.apache.servicemix.common,
+            org.apache.servicemix.common.osgi,
+            org.apache.servicemix.executors.impl,
+            org.apache.xbean.spring.context.v2,
+            org.springframework.beans.factory.xml,
+            sun.misc;resolution:=optional,
+            *
+        </servicemix.osgi.import>
+        <servicemix.osgi.export>
+            org.apache.servicemix.ftp*;version=${project.version},
+            META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.ftp
+        </servicemix.osgi.export>
+        <servicemix.osgi.bundles>
+            org.springframework.core,
+            org.springframework.beans,
+            org.springframework.context
+        </servicemix.osgi.bundles>
+    </properties>
+
+    <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-net</groupId>
+            <artifactId>commons-net</artifactId>
+            <version>${commons-net.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-pool</groupId>
+            <artifactId>commons-pool</artifactId>
+            <version>${commons-pool.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>oro</groupId>
+            <artifactId>oro</artifactId>
+            <version>${oro.version}</version>
+        </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>
+        <!-- for unit/integration testing -->
+        <dependency>
+            <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>
+        <dependency>
+            <groupId>org.apache.ftpserver</groupId>
+            <artifactId>ftpserver-core</artifactId>
+            <version>${ftpserver.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.ftpserver</groupId>
+            <artifactId>ftplet-api</artifactId>
+            <version>${ftpserver.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.mina</groupId>
+            <artifactId>mina-core</artifactId>
+            <version>${mina.version}</version>
+            <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.easymock</groupId>
+                    <artifactId>easymock</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.easymock</groupId>
+                    <artifactId>easymockclassextension</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-jcl</artifactId>
+            <scope>test</scope>
+        </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>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.servicemix.tooling</groupId>
+                <artifactId>jbi-maven-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <type>binding-component</type>
+                    <component>org.apache.servicemix.ftp.FtpComponent</component>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.xbean</groupId>
+                <artifactId>maven-xbean-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>mapping</goal>
+                        </goals>
+                        <configuration>
+                            <namespace>http://servicemix.apache.org/ftp/1.0</namespace>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <!-- exclude generated DefaultBootstrap class from Cobertura reports -->
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>cobertura-maven-plugin</artifactId>
+                <configuration>
+                    <instrumentation>
+                        <excludes>
+                            <exclude>org/apache/servicemix/common/DefaultBootstrap.class</exclude>
+                        </excludes>
+                    </instrumentation>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>cobertura-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </reporting>
 
 </project>