Author: ruwan
Date: Tue Oct 9 22:46:33 2007
New Revision: 583362
URL: http://svn.apache.org/viewvc?rev=583362&view=rev
Log:
Excluding the VFSTest on Windows OS
Modified:
webservices/synapse/trunk/java/modules/transports/pom.xml
Modified: webservices/synapse/trunk/java/modules/transports/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/synapse/trunk/java/modules/transports/pom.xml?rev=583362&r1=583361&r2=583362&view=diff
==============================================================================
--- webservices/synapse/trunk/java/modules/transports/pom.xml (original)
+++ webservices/synapse/trunk/java/modules/transports/pom.xml Tue Oct 9
22:46:33 2007
@@ -34,12 +34,38 @@
<description>Apache Synapse - Transports</description>
<packaging>jar</packaging>
+ <profiles>
+ <!-- excludes the VFS test on windows because it is failing due to a
file locking failure -->
+ <profile>
+ <id>windows-test</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.3</version>
+ <configuration>
+ <excludes>
+ <exclude>**/VFSEchoRawXMLTest.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <activation>
+ <os>
+ <family>Windows</family>
+ </os>
+ </activation>
+ </profile>
+ </profiles>
+
<dependencies>
</dependencies>
<properties>
-
+
</properties>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]