You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by ha...@apache.org on 2001/10/30 21:25:55 UTC

cvs commit: jakarta-avalon-cornerstone/apps/db build.xml

hammant     01/10/30 12:25:55

  Modified:    apps/db  build.xml
  Log:
  slit of classes into server sar and client side jdbc driver
  
  Revision  Changes    Path
  1.3       +18 -2     jakarta-avalon-cornerstone/apps/db/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-cornerstone/apps/db/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2001/10/30 17:45:13	1.2
  +++ build.xml	2001/10/30 20:25:55	1.3
  @@ -96,16 +96,32 @@
   
       <mkdir dir="${build.lib}"/>
   
  -    <jar file="${build.lib}/db.jar"
  +    <!-- The Block -->
  +    <jar file="${build.lib}/avalon-db.jar"
            manifest="${manifest.dir}/db.mf">
         <fileset dir="${build.classes}">
           <include name="org/apache/avalon/db/**"/>
  +        <exclude name="org/apache/avalon/db/transport/cmdstream/client/**"/>
  +        <exclude name="org/apache/avalon/db/driver/**"/>
         </fileset>
         <fileset dir="${java.dir}">
           <include name="org/apache/avalon/db/**/*.xinfo"/>
         </fileset>
       </jar>
   
  +
  +    <!-- The JDBC driver -->
  +    <jar file="${build.lib}/avalon-db-driver-cmdstream.jar">
  +      <fileset dir="${build.classes}">
  +        <include name="org/apache/avalon/db/transport/cmdstream/client/**"/>
  +        <include name="org/apache/avalon/db/transport/*"/>
  +        <include name="org/apache/avalon/db/common/**"/>
  +        <include name="org/apache/avalon/db/driver/**"/>
  +        <include name="org/apache/avalon/db/results/**"/>        
  +      </fileset>
  +    </jar>
  +
  +
     </target>
   
     <target name="main" depends="sars" description="Default target to generate build products minus docs"/>
  @@ -119,7 +135,7 @@
            assembly="${conf.dir}/db-assembly.xml" >
   
         <lib dir="${build.lib}/">
  -        <include name="db.jar"/>
  +        <include name="avalon-db.jar"/>
         </lib>      
   
         <zipfileset dir="${conf.dir}" fullpath="conf/keyStore">
  
  
  

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