User: hiram   
  Date: 00/12/15 19:27:47

  Modified:    build    build.xml
  Log:
  Better persistence and Transactions!
  Transactions work like the should, all operations get done, or none at all
  (It should even be rolling back persistent messages that were logged that were part
  of a transaction that did not complete due to abnormal server termination).
  You can also configure in what directory you would like to
  store the persistence data at.
  
  Revision  Changes    Path
  1.22      +2 -0      spyderMQ/build/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /products/cvs/ejboss/spyderMQ/build/build.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- build.xml 2000/12/13 00:34:07     1.21
  +++ build.xml 2000/12/16 03:27:47     1.22
  @@ -22,6 +22,7 @@
                <property name="examples.dir"           value="${basedir}/examples"/>
                
                <property name="build.src"              value="${dist.dir}/src"/>
  +             <property name="build.data"             value="${dist.dir}/data"/>
                <property name="build.dest"             value="${basedir}/classes"/>
                <property name="build.lib"              value="${dist.dir}/lib"/>
                <property name="build.clientlib" value="${dist.dir}/client"/>
  @@ -41,6 +42,7 @@
                <mkdir dir="${build.conf}"/>            
                <mkdir dir="${build.bin}"/>             
                <mkdir dir="${build.examples}"/>                
  +             <mkdir dir="${build.data}"/>
                
                <!-- MAKE THE SOURCE DIRECTORY -->
                <mkdir dir="${build.src}/org/spydermq"/>
  
  
  

Reply via email to