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:04:19 UTC

svn commit: r1408660 - in /camel/trunk: components/camel-ftp/pom.xml tests/camel-itest-osgi/pom.xml

Author: davsclaus
Date: Tue Nov 13 10:04:18 2012
New Revision: 1408660

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

Modified:
    camel/trunk/components/camel-ftp/pom.xml
    camel/trunk/tests/camel-itest-osgi/pom.xml

Modified: camel/trunk/components/camel-ftp/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/pom.xml?rev=1408660&r1=1408659&r2=1408660&view=diff
==============================================================================
--- camel/trunk/components/camel-ftp/pom.xml (original)
+++ camel/trunk/components/camel-ftp/pom.xml Tue Nov 13 10:04:18 2012
@@ -118,8 +118,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>
@@ -128,17 +133,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>
 

Modified: camel/trunk/tests/camel-itest-osgi/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tests/camel-itest-osgi/pom.xml?rev=1408660&r1=1408659&r2=1408660&view=diff
==============================================================================
--- camel/trunk/tests/camel-itest-osgi/pom.xml (original)
+++ camel/trunk/tests/camel-itest-osgi/pom.xml Tue Nov 13 10:04:18 2012
@@ -388,6 +388,7 @@
       <plugin>
         <groupId>org.apache.servicemix.tooling</groupId>
         <artifactId>depends-maven-plugin</artifactId>
+        <version>1.2</version>
         <executions>
           <execution>
             <id>generate-depends-file</id>