You are viewing a plain text version of this content. The canonical link for it is here.
Posted to alexandria-dev@jakarta.apache.org by sa...@apache.org on 2002/02/03 05:16:32 UTC

cvs commit: jakarta-alexandria/proposal/vindico build.xml

sanders     02/02/02 20:16:32

  Modified:    proposal/vindico build.xml
  Log:
  My 'bootstrapping' requires the XMLListener and helper
  to be in the classpath.  So far everything else should
  be covered.  Maybe I can even get this Listener into
  the Ant tree?
  
  Revision  Changes    Path
  1.6       +16 -2     jakarta-alexandria/proposal/vindico/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-alexandria/proposal/vindico/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml	1 Feb 2002 17:24:41 -0000	1.5
  +++ build.xml	3 Feb 2002 04:16:32 -0000	1.6
  @@ -2,7 +2,7 @@
   
   <!--
     Jakarta Vindico (Alexandria)
  -  $Id: build.xml,v 1.5 2002/02/01 17:24:41 sanders Exp $
  +  $Id: build.xml,v 1.6 2002/02/03 04:16:32 sanders Exp $
   -->
   
     <!-- User's overrides to existing properties -->
  @@ -171,7 +171,20 @@
       </java>
     </target>
   
  -  <target name="run" depends="compile">
  +  <target name="ant">
  +    <delete dir="${build.home}/ant"/>
  +    <mkdir dir="${build.home}/ant"/>
  +    <javac  srcdir="${source.home}"
  +           destdir="${build.home}/ant"
  +             debug="${compile.debug}"
  +       deprecation="${compile.deprecation}"
  +          optimize="${compile.optimize}"
  +          includes="org/apache/alexandria/ant/XMLListener.java,org/apache/alexandria/util/XMLHelper.java"/>
  +    <jar    jarfile="${dist.home}/vindico-ant.jar"
  +            basedir="${build.home}/classes"/>
  +  </target>
  +
  +  <target name="run" depends="compile, ant">
       <echo message="Running ${component.title}..."/>
       <taskdef name="vindico" classname="org.apache.alexandria.Vindico">
         <classpath refid="compile.classpath"/>
  @@ -185,6 +198,7 @@
   
       <delete dir="${vindico.basedir}/builds"/>
       <mkdir dir="${vindico.basedir}/builds"/>
  +    <copy file="${dist.home}/vindico-ant.jar" todir="${vindico.basedir}/builds"/>
       <vindico workspace="${vindico.profile}"/>
       <ant dir="${vindico.basedir}/builds" target="vindico" output="${vindico.basedir}/logs/masterbuild.txt"/>
   
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>