You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bcel-dev@jakarta.apache.org by jv...@apache.org on 2001/12/15 00:42:06 UTC

cvs commit: jakarta-bcel build.xml default.properties

jvanzyl     01/12/14 15:42:06

  Modified:    .        build.xml default.properties
  Log:
  - adjusting the dist target so that the source distribution can be
    built by anyone attempting to make patches
  
  - fixed the dist target so that the sources are in the correct location
    for compiling
  
  - update the version to 5.1-dev as i've built the bundles for the 5.0
    release.
  
  Revision  Changes    Path
  1.6       +11 -4     jakarta-bcel/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml	2001/11/15 16:23:36	1.5
  +++ build.xml	2001/12/14 23:42:06	1.6
  @@ -2,7 +2,7 @@
   
   <!--
      Build file for BCEL
  -   $Id: build.xml,v 1.5 2001/11/15 16:23:36 jvanzyl Exp $
  +   $Id: build.xml,v 1.6 2001/12/14 23:42:06 jvanzyl Exp $
   
   Notes:
      This is a build file for use with the Jakarta Ant build tool.
  @@ -239,7 +239,7 @@
   
     <target 
       name="dist"
  -    depends="jar,apidocs,xdocs">
  +    depends="init,jar,apidocs,xdocs">
   
       <property name="distDir" value="${build.dir}/${final.name}"/>
   
  @@ -264,6 +264,13 @@
         </fileset>
       </copy>
   
  +    <!-- Copy lib directory -->
  +    <copy todir="${distDir}/lib">
  +      <fileset dir="${lib.dir}">
  +        <include name="*.jar"/>
  +      </fileset>
  +    </copy>
  +
       <!-- Copy documentation -->
       <copy todir="${distDir}/docs">
         <fileset dir="${docs.dest}">
  @@ -298,7 +305,7 @@
   
       <delete>
         <fileset dir="${distDir}">
  -        <include name="**/*.jar"/>
  +        <include name="**/bcel*.jar"/>
         </fileset>
       </delete>
       
  @@ -306,7 +313,7 @@
       <copy todir="${distDir}" file="build.xml"/>
   
       <!-- Copy Source -->
  -    <copy todir="${distDir}/src">
  +    <copy todir="${distDir}/src/java">
         <fileset dir="${src.dir}">
           <include name="**/*.java"/>
         </fileset>
  
  
  
  1.3       +1 -1      jakarta-bcel/default.properties
  
  Index: default.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/default.properties,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- default.properties	2001/11/15 16:23:36	1.2
  +++ default.properties	2001/12/14 23:42:06	1.3
  @@ -7,7 +7,7 @@
   # -------------------------------------------------------------------
   
   project = bcel
  -version = 5.0rc1
  +version = 5.1-dev
   final.name = ${project}-${version}
   jakarta.site2 = ../jakarta-site2
   docs.src = ./xdocs
  
  
  

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