You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2007/10/10 18:19:32 UTC

svn commit: r583528 - /geronimo/server/trunk/testsuite/web-testsuite/pom.xml

Author: gawor
Date: Wed Oct 10 09:19:32 2007
New Revision: 583528

URL: http://svn.apache.org/viewvc?rev=583528&view=rev
Log:
added excludeTest property to configure which test should be exluded (tomcat or jetty)

Modified:
    geronimo/server/trunk/testsuite/web-testsuite/pom.xml

Modified: geronimo/server/trunk/testsuite/web-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/testsuite/web-testsuite/pom.xml?rev=583528&r1=583527&r2=583528&view=diff
==============================================================================
--- geronimo/server/trunk/testsuite/web-testsuite/pom.xml (original)
+++ geronimo/server/trunk/testsuite/web-testsuite/pom.xml Wed Oct 10 09:19:32 2007
@@ -45,6 +45,10 @@
          - JSTL
     </description>
 
+    <properties>
+      <excludeTest>test-tomcat</excludeTest>
+    </properties>
+
     <build>
         <plugins>
             <plugin>
@@ -109,11 +113,11 @@
                     <plugin>
                         <groupId>org.apache.geronimo.genesis.plugins</groupId>
                         <artifactId>maven-maven-plugin</artifactId>
-                        <!-- Skipping jetty tests  for now  till we figure out how to switch it dynamically -->
+                        <!-- Skip tomcat (or jetty) tests for now till we figure out how to switch it dynamically -->
                         <configuration>
                           <fileset>
                             <excludes>
-                              <exclude>test-jetty/pom.xml</exclude>
+                              <exclude>${excludeTest}/pom.xml</exclude>
                             </excludes>
                           </fileset>
                         </configuration>