|
From: Adrian B. <ej...@us...> - 2003-05-02 01:25:47
|
User: ejort
Date: 03/05/01 18:25:46
Modified: . build.xml
Log:
Don't filter jar files, this corrupts the soap jar in the web test
Revision Changes Path
1.246 +8 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.245
retrieving revision 1.246
diff -u -r1.245 -r1.246
--- build.xml 1 May 2003 19:33:34 -0000 1.245
+++ build.xml 2 May 2003 01:25:45 -0000 1.246
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.245 2003/05/01 19:33:34 patriot1burke Exp $ -->
+<!-- $Id: build.xml,v 1.246 2003/05/02 01:25:45 ejort Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -172,6 +172,13 @@
<property name="builduid" value="${TIMENOW}"/>
<property name="results_web" value="http://users.jboss.org/~starksm/HEAD"/>
+ <patternset id="compile-resources.filter.pattern">
+ <include name="**/*"/>
+ <exclude name="**/*.jar"/>
+ </patternset>
+ <patternset id="compile-resources.pattern">
+ <include name="**/*.jar"/>
+ </patternset>
<!-- Classpath to build and run the tests -->
<path id="tests.classpath">
|