User: user57  
  Date: 01/08/30 22:30:31

  Modified:    .        build.xml
  Log:
   o finished initial module level work to automate the website build via
     ant/buildmagic.
   ! still needs project control, to pull files to release.
  
  Revision  Changes    Path
  1.15      +8 -11     manual/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/manual/build.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- build.xml 2001/08/29 22:45:06     1.14
  +++ build.xml 2001/08/31 05:30:31     1.15
  @@ -10,7 +10,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.14 2001/08/29 22:45:06 user57 Exp $ -->
  +<!-- $Id: build.xml,v 1.15 2001/08/31 05:30:31 user57 Exp $ -->
   
   <project default="main">
   
  @@ -197,7 +197,7 @@
        |  different type of compile that needs to be performed, short of
        |  documentation compiles.
       -->
  -  <target name="compile" depends="init, compile-stylesheets, compile-docs, 
compile-etc"
  +  <target name="compile" depends="init, compile-stylesheets, compile-docs, 
compile-metadata"
          description="Compile all source files."/>
   
     <!-- Compile stylesheets -->
  @@ -210,8 +210,8 @@
       </copy>
     </target>
   
  -  <!-- Compile etc -->
  -  <target name="compile-etc" depends="init">
  +  <!-- Compile metadata -->
  +  <target name="compile-metadata" depends="init">
       <mkdir dir="${build.metadata}"/>
       <copy todir="${build.metadata}" filtering="yes">
         <fileset dir="${source.metadata}">
  @@ -256,8 +256,8 @@
   
       <war warfile="${build.jars}/manual.war"
         webxml="${build.metadata}/manual-web.xml">
  -      <zipfileset prefix="HTML/fancy" dir="${build.html.fancy}"/>
  -      <zipfileset prefix="HTML/printable" dir="${build.html.printable}"/>
  +      <zipfileset prefix="HTML" dir="${build.html.fancy}"/>
  +      <zipfileset prefix="printable" dir="${build.html.printable}"/>
       </war>
    
       <ear earfile="${build.jars}/manual.ear"
  @@ -483,14 +483,11 @@
     <target name="main" depends="most"
          description="Executes the default target (most)."/>
       
  -  <target name="all" depends="docs"
  +  <target name="all" depends="jars"
          description="Builds everything."/>
   
  -  <target name="most" depends="docs"
  +  <target name="most" depends="jars"
          description="Builds almost everything."/>
  -
  -  <target name="min" depends="compile"
  -       description="Builds a minimal subset."/>
   
     <target name="tests" depends="init"
          description="Execute all tests."/>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to