You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ha...@apache.org on 2008/03/31 17:52:50 UTC

svn commit: r643036 - /activemq/camel/trunk/components/camel-ftp/pom.xml

Author: hadrian
Date: Mon Mar 31 08:52:46 2008
New Revision: 643036

URL: http://svn.apache.org/viewvc?rev=643036&view=rev
Log:
Avoid dependency on SNAPSHOT version of yet to be released apache ftpserver

Modified:
    activemq/camel/trunk/components/camel-ftp/pom.xml

Modified: activemq/camel/trunk/components/camel-ftp/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-ftp/pom.xml?rev=643036&r1=643035&r2=643036&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-ftp/pom.xml (original)
+++ activemq/camel/trunk/components/camel-ftp/pom.xml Mon Mar 31 08:52:46 2008
@@ -72,12 +72,16 @@
       <artifactId>junit</artifactId>
       <scope>test</scope>
     </dependency>
+<!--
+    ## Should not depend on a SNAPSHOT version; tests disabled 
+       pending an ftpserver release
     <dependency>
       <groupId>org.apache.ftpserver</groupId>
       <artifactId>ftpserver-core</artifactId>
       <version>1.0-incubator-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
+-->
     <dependency>
       <groupId>backport-util-concurrent</groupId>
       <artifactId>backport-util-concurrent</artifactId>
@@ -98,6 +102,19 @@
 
   <build>
     <plugins>
+      <!-- Exclude tests from buld due to dependency on SNAPSHOT version of 
+           apache ftpserver.  Reenable after a proper release of ftpserver!!! -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+          <testExcludes>
+            <exclude>**/*Test.*</exclude>
+          </testExcludes>
+        </configuration>
+      </plugin>
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>