User: vharcq  
  Date: 02/04/28 14:39:03

  Modified:    modules/script Tag: MODULE_REFACTORING_BRANCH build.xml
  Log:
  Add xdoclet module build script
  Correct xdoclet: tag error
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.3   +16 -3     xdoclet/modules/script/Attic/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/xdoclet/xdoclet/modules/script/Attic/build.xml,v
  retrieving revision 1.1.2.2
  retrieving revision 1.1.2.3
  diff -u -w -r1.1.2.2 -r1.1.2.3
  --- build.xml 28 Apr 2002 08:50:05 -0000      1.1.2.2
  +++ build.xml 28 Apr 2002 21:39:03 -0000      1.1.2.3
  @@ -23,6 +23,10 @@
           <fileset dir="${root.dir}/core/dist/lib">
               <include name="xdoclet.jar" />
           </fileset>
  +        <!-- We rely on xdoclet (doc) module during the build -->
  +        <fileset dir="${root.dir}/core/dist/lib">
  +            <include name="xdoclet.jar" />
  +        </fileset>
       </path>
   
       <taskdef
  @@ -109,7 +113,7 @@
      <!-- =================================================================== -->
      <target 
         name="xdoclet-xml" 
  -      depends="prepare"
  +      depends="prepare,module-xdoclet"
         description="Makes one xdoclet.xml describing all modules"
      >
         <mkdir dir="${output.meta.dir}"/>
  @@ -136,7 +140,7 @@
      <!-- =================================================================== -->
      <target 
         name="jar" 
  -      depends="compile,xdoclet-xml,dist-modules"
  +      depends="compile,xdoclet-xml,all-modules"
         description="Makes the jar containing all modules"
      >
         <mkdir dir="${output.lib.dir}"/>
  @@ -152,15 +156,24 @@
       </target>
      
       <!-- =================================================================== -->
  +    <!-- Create Doc module distribution                                      -->
  +    <!-- =================================================================== -->
  +    <target name="module-xdoclet" description="Makes the doc module">
  +        <ant antfile="xdoclet/script/build.xml"     inheritAll="false" />
  +    </target>
  +    
  +    <!-- =================================================================== -->
       <!-- Create all modules distribution                                     -->
       <!-- =================================================================== -->
  -    <target name="dist-modules" description="Makes the jar containing all modules">
  +    <target name="all-modules" description="Makes the jar containing all modules">
  +        <ant antfile="xdoclet/script/build.xml"     inheritAll="false" />
           <ant antfile="ejb/script/build.xml"         inheritAll="false" />
           <ant antfile="bea/script/build.xml"         inheritAll="false" />
           
           <mkdir dir="${output.lib.dir}/modules"/>
           
           <copy todir="${output.lib.dir}/modules">
  +            <fileset dir="xdoclet/build/output/lib/" includes="*.jar"/>
               <fileset dir="ejb/build/output/lib/" includes="*.jar"/>
               <fileset dir="bea/build/output/lib/" includes="*.jar"/>
           </copy>
  
  
  

_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to