You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by js...@apache.org on 2007/03/27 15:40:31 UTC

svn commit: r522905 - /activemq/camel/trunk/camel-script/pom.xml

Author: jstrachan
Date: Tue Mar 27 06:40:30 2007
New Revision: 522905

URL: http://svn.apache.org/viewvc?view=rev&rev=522905
Log:
disabled test cases until we can find a freely distributable jar for Java 5

Modified:
    activemq/camel/trunk/camel-script/pom.xml

Modified: activemq/camel/trunk/camel-script/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/camel-script/pom.xml?view=diff&rev=522905&r1=522904&r2=522905
==============================================================================
--- activemq/camel/trunk/camel-script/pom.xml (original)
+++ activemq/camel/trunk/camel-script/pom.xml Tue Mar 27 06:40:30 2007
@@ -92,4 +92,23 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <childDelegation>false</childDelegation>
+          <useFile>true</useFile>
+          <includes>
+            <include>**/*Test.*</include>
+          </includes>
+          <excludes>
+            <!-- TODO re-enable when we can find freely redistributable jars for Java 5! -->
+            <exclude>**/Jsr223Test.*</exclude>
+            <exclude>**/GroovyTest.*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>