You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ne...@apache.org on 2001/10/10 17:55:32 UTC

cvs commit: xml-xerces/java build.xml

neilg       01/10/10 08:55:32

  Modified:    java     build.xml
  Log:
  add an ant target to build in schema support.  This is only a temporary hack until schema support gets mainstreamed.  In case anyone is interested, schema-all is the target that builds schema support into everything; I have not constructed corresponding analogs for any of the other commonly-used targets.
  
  Revision  Changes    Path
  1.56      +14 -1     xml-xerces/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/build.xml,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- build.xml	2001/08/29 14:43:15	1.55
  +++ build.xml	2001/10/10 15:55:32	1.56
  @@ -12,7 +12,7 @@
   Copyright:
     Copyright (c) 2000 The Apache Software Foundation.
   
  -   $Id: build.xml,v 1.55 2001/08/29 14:43:15 neilg Exp $
  +   $Id: build.xml,v 1.56 2001/10/10 15:55:32 neilg Exp $
   
   ==================================================================== -->
   
  @@ -504,6 +504,19 @@
     <!-- Builds and packages sources and binary distributions                -->
     <!-- =================================================================== -->
     <target name="all" depends="pack-src, pack-bin">
  +  </target>
  +
  +  <target name="prepare-schema-src">
  +    <copy todir="${build.src}">
  +        <fileset 
  +            dir="${src.dir}"
  +            includes="**/v2/**/*.java"
  +            excludes="**/v2/new_datatypes/**">
  +        </fileset>
  +    </copy>
  +  </target>
  +  
  +  <target name="schema-all" depends="prepare-src, prepare-schema-src, pack-src, pack-bin">
     </target>
   
     <!-- =================================================================== -->
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org