You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2012/11/13 11:15:27 UTC

svn commit: r1408664 - in /camel/branches/camel-2.10.x: ./ components/camel-ftp/pom.xml

Author: davsclaus
Date: Tue Nov 13 10:15:26 2012
New Revision: 1408664

URL: http://svn.apache.org/viewvc?rev=1408664&view=rev
Log:
Fixed some Maven WARNs

Modified:
    camel/branches/camel-2.10.x/   (props changed)
    camel/branches/camel-2.10.x/components/camel-ftp/pom.xml

Propchange: camel/branches/camel-2.10.x/
------------------------------------------------------------------------------
  Merged /camel/trunk:r1408660

Propchange: camel/branches/camel-2.10.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: camel/branches/camel-2.10.x/components/camel-ftp/pom.xml
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/components/camel-ftp/pom.xml?rev=1408664&r1=1408663&r2=1408664&view=diff
==============================================================================
--- camel/branches/camel-2.10.x/components/camel-ftp/pom.xml (original)
+++ camel/branches/camel-2.10.x/components/camel-ftp/pom.xml Tue Nov 13 10:15:26 2012
@@ -120,8 +120,13 @@
     <plugins>
 
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
+          <excludes>
+            <!-- skip sftp tests as they can hang CI servers -->
+            <exclude>org/apache/camel/component/file/remote/sftp/**.java</exclude>
+          </excludes>
           <forkedProcessTimeoutInSeconds>1800</forkedProcessTimeoutInSeconds>
           <systemPropertyVariables>
             <ftp.enable>${ftp.enable}</ftp.enable>
@@ -130,17 +135,6 @@
         </configuration>
       </plugin>
 
-      <!-- skip sftp tests as they can hang CI servers -->
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <excludes>
-            <exclude>org/apache/camel/component/file/remote/sftp/**.java</exclude>
-          </excludes>
-        </configuration>
-      </plugin>
-
     </plugins>
   </build>