You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by st...@apache.org on 2004/01/01 23:41:02 UTC

cvs commit: cocoon-2.1/tools/targets init-build.xml

stefano     2004/01/01 14:41:02

  Modified:    tools/targets init-build.xml
  Log:
  - removed JVM-specific warning since we don't have any JVM-specific code anymore
- prettier format and make compiling options stand out better
  
  Revision  Changes    Path
  1.4       +11 -12    cocoon-2.1/tools/targets/init-build.xml
  
  Index: init-build.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/tools/targets/init-build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- init-build.xml	20 Dec 2003 08:05:17 -0000	1.3
  +++ init-build.xml	1 Jan 2004 22:41:02 -0000	1.4
  @@ -152,19 +152,18 @@
   
     <!-- Prepare the build directory -->
     <target name="prepare" depends="init-tasks">
  -    <echo>
  -+------------------------------------------------------------------+
  -             ${fullname} ${version} [${year}]
  -+------------------------------------------------------------------+
  +    <echo>======================================================================
  +                 ${fullname} ${version} [${year}]
  +======================================================================
    Building with ${ant.version}
  - using build file ${ant.file}
  - Compiling with debug ${compiler.debug}, optimize ${compiler.optimize}, deprecation ${compiler.deprecation}
  -+-------------------------| W A R N I N G |------------------------+
  - This build is targeted for use with JVM ${target.vm}
  - Using this build on a virtual machine other than the one
  - it is targeted for may result in runtime errors.
  -+------------------------------------------------------------------+
  -    </echo>
  +----------------------------------------------------------------------
  + Using build file ${ant.file}
  +----------------------------------------------------------------------
  + Compiler options:
  +   - debug ......... [${compiler.debug}]
  +   - optimize ...... [${compiler.optimize}]
  +   - deprecation ... [${compiler.deprecation}]
  +======================================================================</echo>
       <mkdir dir="${build}"/>
     </target>