You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xmlrpc-dev@ws.apache.org by rh...@apache.org on 2003/01/26 03:38:27 UTC

cvs commit: xml-rpc build.xml

rhoegg      2003/01/25 18:38:27

  Modified:    .        build.xml
  Log:
  Modified the test target so that it doesn't try to run the abstract base classes for the tests.
  
  Revision  Changes    Path
  1.21      +3 -1      xml-rpc/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-rpc/build.xml,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- build.xml	10 Oct 2002 00:33:24 -0000	1.20
  +++ build.xml	26 Jan 2003 02:38:27 -0000	1.21
  @@ -3,7 +3,7 @@
   <project name="xmlrpc" default="jar" basedir=".">
   
     <!-- Properties which are not allowed to be overridden -->
  -  <property name="version" value="1.2-a3-dev"/>
  +  <property name="version" value="2.0-a1-dev"/>
   
     <!-- Allow any user specific values to override the defaults -->
     <property file="${user.home}/build.properties" />
  @@ -245,6 +245,8 @@
         <batchtest todir="${test.reportsDirectory}">
           <fileset dir="${build.test.dest}">
             <include name="**/*Test.class"/>
  +          <exclude name="**/XmlRpcTransportTest.class"/>
  +          <exclude name="**/LocalServerRpcTest.class"/>
           </fileset>
         </batchtest>
       </junit>