You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by me...@locus.apache.org on 2000/11/10 00:14:06 UTC

cvs commit: jakarta-ant/src/antidote ChangeLog build.xml

metasim     00/11/09 15:14:06

  Modified:    src/antidote ChangeLog build.xml
  Log:
  Started work on the Ant Construction Set classes (ACS), which will map directly
  to DOM elements allowing easier manipulation of the XML and better editing of
  Ant projects. NB: The code currently requires the Sun JAXP library (which Ant
  needs anyway).
  
  Revision  Changes    Path
  1.3       +11 -0     jakarta-ant/src/antidote/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/antidote/ChangeLog,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ChangeLog	2000/11/06 12:52:41	1.2
  +++ ChangeLog	2000/11/09 23:14:06	1.3
  @@ -1,3 +1,14 @@
  +2000-11-09  Simeon H.K. Fitch  <si...@fitch.net>
  +
  +	* org/apache/tools/ant/gui/ProjectProxy.java: Started rework of
  +	project data model, using elements from the XML parser directly
  +	through the new Ant Construction Set package.
  +
  +2000-11-08  Simeon H.K. Fitch  <si...@fitch.net>
  +
  +	* org/apache/tools/ant/gui/About.java: Useless tweaking inspired
  +	by procrastination.
  +
   2000-11-05  Simeon H.K. Fitch  <si...@fitch.net>
   
   	* org/apache/tools/ant/gui/LogLevelEnum.java: Added log level
  
  
  
  1.3       +4 -1      jakarta-ant/src/antidote/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/antidote/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2000/11/06 12:52:41	1.2
  +++ build.xml	2000/11/09 23:14:06	1.3
  @@ -15,11 +15,14 @@
     <property name="version" value="0.1"/>
   
     <property name="src.dir" value="."/>
  +  <!-- XXX Yuck. Need to fix this with something better -->
     <property name="build.dir" value="../../../build/antidote"/>
     <property name="lib.dir" value="${build.dir}/lib"/>
     <property name="build.classes" value="${build.dir}/classes"/>
     <property name="build.javadocs" value="${build.dir}/javadocs"/>
     <property name="manifest" value="${src.dir}/etc/manifest"/>
  +  <!-- XXX Yuck. Need to fix this with something better -->
  +  <property name="ant.jar" value="${build.dir}/../ant/lib/ant.jar"/>
   
     <path id="classpath">
     </path>
  @@ -114,7 +117,7 @@
         <jvmarg value="-Djava.compiler=NONE"/>
         <classpath>
           <pathelement location="${build.classes}"/>
  -        <pathelement location="${ant.home}/lib/ant.jar"/>
  +        <pathelement location="${ant.jar}"/>
         </classpath>
       </java>
     </target>