You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-cvs@xml.apache.org by ed...@apache.org on 2002/04/24 03:26:28 UTC

cvs commit: xml-commons/java/external build.xml

edwingo     02/04/23 18:26:28

  Modified:    java/external Tag: jaxp-ri-1_1_3-branch build.xml
  Log:
  Compile w/ debug on by default
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.2.2.1   +3 -1      xml-commons/java/external/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-commons/java/external/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- build.xml	14 Aug 2001 01:08:03 -0000	1.2
  +++ build.xml	24 Apr 2002 01:26:28 -0000	1.2.2.1
  @@ -16,6 +16,7 @@
     <property name="api.jar.location" value="${build.dir}" />
     <property name="api.jar.name" value="xml-apis.jar" />
     <property name="api.jar" value="${api.jar.location}/${api.jar.name}" />
  +  <property name="debug" value="on"/>
   
     <target name="prepare" 
       description="Create build output directories">
  @@ -26,7 +27,8 @@
   
     <target name="compile" depends="prepare"
       description="Compile all classes">
  -   <javac srcdir="${src.dir}" destdir="${build.classes.dir}" />
  +    <javac srcdir="${src.dir}" destdir="${build.classes.dir}"
  +           debug="${debug}" />
     </target>
   
     <target name="jar" depends="compile"