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 md...@apache.org on 2002/04/18 09:52:13 UTC

cvs commit: jakarta-bcel manifest.txt build.xml

mdahm       02/04/18 00:52:13

  Modified:    .        build.xml
  Added:       .        manifest.txt
  Log:
  JAR uses listclass as main class by default
  
  Revision  Changes    Path
  1.10      +4 -3      jakarta-bcel/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.xml	11 Mar 2002 12:22:39 -0000	1.9
  +++ build.xml	18 Apr 2002 07:52:13 -0000	1.10
  @@ -2,7 +2,7 @@
   
   <!--
      Build file for BCEL
  -   $Id: build.xml,v 1.9 2002/03/11 12:22:39 mdahm Exp $
  +   $Id: build.xml,v 1.10 2002/04/18 07:52:13 mdahm Exp $
   
   Notes:
      This is a build file for use with the Jakarta Ant build tool.
  @@ -65,10 +65,11 @@
     <target name="build" depends="compile"/>
   
     <!-- Jar the library -->
  -  <target name="jar" depends="compile">
  +  <target name="jar" depends="examples">
       <jar jarfile="${build.dir}/${name}.jar" 
            basedir="${build.dest}"
  -	 includes="org/**"
  +	 manifest="${basedir}/manifest.txt"
  +	 includes="org/**,listclass.class"
       />
     </target>
   
  
  
  
  1.1                  jakarta-bcel/manifest.txt
  
  Index: manifest.txt
  ===================================================================
  Manifest-Version: 1.0
  Main-Class: listclass
  
  
  

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