vmassol     2003/01/02 07:45:12

  Modified:    Eclipse-Plugin build.xml
  Log:
  - Added a "clean" target
  - Added some comments
  - Added the start of an init target
  
  Revision  Changes    Path
  1.2       +30 -1     jakarta-cactus/Eclipse-Plugin/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/Eclipse-Plugin/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml 30 Dec 2002 21:25:06 -0000      1.1
  +++ build.xml 2 Jan 2003 15:45:12 -0000       1.2
  @@ -13,7 +13,25 @@
        <property name="target.dir" value="target"/>
        <property name="target.classes.dir" value="${target.dir}/classes"/>
   
  -     <target name="compile">
  +    <!--
  +       ========================================================================
  +         Initialize the build and display mandatory properties.
  +       ========================================================================
  +    -->
  +     <target name="init">
  +
  +             <echo>eclipse.junit.jar = ${eclipse.junit.jar}</echo>
  +             <echo>eclipse.core.boot.jar = ${eclipse.core.boot.jar}</echo>
  +             <echo>eclipse.jdt.junit.jar = ${eclipse.jdt.junit.jar}</echo>
  +
  +     </target>
  +     
  +    <!--
  +       ========================================================================
  +         Compile the plugin
  +       ========================================================================
  +    -->
  +     <target name="compile" depends="init">
   
           <echo>
             ----------------------------------------------
  @@ -44,4 +62,15 @@
   
        </target>
   
  +    <!--
  +       ========================================================================
  +         Clean up build-generated files and directories
  +       ========================================================================
  +    -->
  +     <target name="clean">
  +     
  +             <delete dir="${target.dir}"/>
  +             
  +     </target>
  +     
   </project>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to