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 2003/01/19 19:03:53 UTC

cvs commit: jakarta-avalon-excalibur/altrmi/src/conf MANIFEST-client.MF MANIFEST-server.MF

hammant     2003/01/19 10:03:53

  Modified:    altrmi   build.xml default.properties
  Added:       altrmi/src/conf MANIFEST-client.MF MANIFEST-server.MF
  Log:
  Simpler jars for simpler projects.
  
  Revision  Changes    Path
  1.65      +22 -0     jakarta-avalon-excalibur/altrmi/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/altrmi/build.xml,v
  retrieving revision 1.64
  retrieving revision 1.65
  diff -u -r1.64 -r1.65
  --- build.xml	12 Jan 2003 22:09:12 -0000	1.64
  +++ build.xml	19 Jan 2003 18:03:52 -0000	1.65
  @@ -268,6 +268,28 @@
             <include name="org/apache/excalibur/altrmi/remotable/**"/>
           </jar>
   
  +        <jar jarfile="${build.lib}/${client.jar.name}"
  +            basedir="${build.classes}"
  +            compress="${build.compress}"
  +            manifest="src/conf/MANIFEST-client.MF">
  +          <include name="org/apache/excalibur/altrmi/common/**"/>
  +          <include name="org/apache/excalibur/altrmi/client/*"/>
  +          <include name="org/apache/excalibur/altrmi/client/impl/**"/>
  +          <exclude name="**/http/**"/>
  +        </jar>
  +
  +        <jar jarfile="${build.lib}/${server.jar.name}"
  +            basedir="${build.classes}"
  +            compress="${build.compress}"
  +            manifest="src/conf/MANIFEST-server.MF">
  +          <include name="org/apache/excalibur/altrmi/common/**"/>            
  +          <include name="org/apache/excalibur/altrmi/server/*"/>
  +          <include name="org/apache/excalibur/altrmi/server/impl/**"/>
  +          <exclude name="**/http/**"/>
  +          <include name="org/apache/excalibur/altrmi/registry/**"/>
  +        </jar>
  +
  +
       </target>
   
       <!-- Creates all the Javadocs -->
  
  
  
  1.23      +2 -0      jakarta-avalon-excalibur/altrmi/default.properties
  
  Index: default.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/altrmi/default.properties,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- default.properties	19 Jan 2003 11:09:59 -0000	1.22
  +++ default.properties	19 Jan 2003 18:03:52 -0000	1.23
  @@ -20,6 +20,8 @@
   registry.jar.name=${name}-registry-${version}.jar
   blocks.jar.name=${name}-blocks-${version}.jar
   remotable.jar.name=${name}-remotable-${version}.jar
  +server.jar.name=${name}-server-${version}.jar
  +client.jar.name=${name}-client-${version}.jar
   
   # --------------------------------------------------
   #                REQUIRED LIBRARIES
  
  
  
  1.1                  jakarta-avalon-excalibur/altrmi/src/conf/MANIFEST-client.MF
  
  Index: MANIFEST-client.MF
  ===================================================================
  Extension-Name: excalibur-altrmi-client
  Specification-Vendor: Apache Software Foundation
  Specification-Version: 0.9
  Implementation-Vendor: Apache Software Foundation
  Implementation-Version: 0.9
  
  
  
  
  1.1                  jakarta-avalon-excalibur/altrmi/src/conf/MANIFEST-server.MF
  
  Index: MANIFEST-server.MF
  ===================================================================
  Extension-Name: excalibur-altrmi-server
  Specification-Vendor: Apache Software Foundation
  Specification-Version: 0.9
  Implementation-Vendor: Apache Software Foundation
  Implementation-Version: 0.9
  
  
  
  

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