Author: davsclaus
Date: Sun Apr 6 06:50:34 2008
New Revision: 645242
URL: http://svn.apache.org/viewvc?rev=645242&view=rev
Log:
Enabled dependency on Apache FTP Server otherwise Bamboo can not compile code
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=645242&r1=645241&r2=645242&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-ftp/pom.xml (original)
+++ activemq/camel/trunk/components/camel-ftp/pom.xml Sun Apr 6 06:50:34 2008
@@ -72,16 +72,14 @@
<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>
@@ -102,7 +100,7 @@
<build>
<plugins>
- <!-- Exclude tests from buld due to dependency on SNAPSHOT version of
+ <!-- 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>
@@ -110,9 +108,9 @@
<configuration>
<source>1.5</source>
<target>1.5</target>
- <testExcludes>
+ <!-- <testExcludes>
<exclude>**/*Test.*</exclude>
- </testExcludes>
+ </testExcludes> -->
</configuration>
</plugin>
<plugin>