You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by fr...@apache.org on 2002/02/09 18:10:10 UTC

cvs commit: jakarta-commons-sandbox/simplestore README.txt build.xml build.properties.sample

froehlich    02/02/09 09:10:10

  Modified:    simplestore README.txt build.xml build.properties.sample
  Log:
  added hsqldb.jar for the samples and tests
  
  Revision  Changes    Path
  1.7       +2 -2      jakarta-commons-sandbox/simplestore/README.txt
  
  Index: README.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/simplestore/README.txt,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- README.txt	22 Jan 2002 22:24:16 -0000	1.6
  +++ README.txt	9 Feb 2002 17:10:09 -0000	1.7
  @@ -7,10 +7,10 @@
   
      http://jakarta.apache.org/ant/
      
  -For the jips based Store persistence you need the jisp
  +For the HSQL Database Engine you need the HSQLDB
   libary from:
   
  -  http://www.coyotegulch.com/jisp/index.html
  +  http://sourceforge.net/projects/hsqldb/
   
   For compiling rename the build.properties.sample file into
   build.properties, and modify to reflect the location of the
  
  
  
  1.12      +3 -3      jakarta-commons-sandbox/simplestore/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/simplestore/build.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- build.xml	9 Feb 2002 14:58:51 -0000	1.11
  +++ build.xml	9 Feb 2002 17:10:09 -0000	1.12
  @@ -2,7 +2,7 @@
   
   <!--
           "simplestore" component of the Jakarta Commons Subproject
  -        $Id: build.xml,v 1.11 2002/02/09 14:58:51 baliuka Exp $
  +        $Id: build.xml,v 1.12 2002/02/09 17:10:09 froehlich Exp $
   -->
   
   <!-- ========== Executable Targets ======================================== -->
  @@ -43,7 +43,7 @@
       <path id="compile.classpath">
         <pathelement location="${build.home}/classes"/>
         <pathelement location="${commons-collections.jar}"/>
  -      <pathelement location="${jisp.jar}"/>
  +      <pathelement location="${hsqldb.jar}"/>
         <fileset dir="./lib">
   		<include name="*.*"/>
          </fileset>
  @@ -53,7 +53,7 @@
   
       <!-- ========== Test Execution Defaults =================================== -->
       <property name="cp" value=""/>
  -    <property name="classpath" value="${cp}:${junit.jar}:${jisp.jar}"/>
  +    <property name="classpath" value="${cp}:${junit.jar}:${hsqldb.jar}"/>
   
       <property name="test.entry" value="org.apache.commons.simplestore.TestAll"/>
       <property name="test.failonerror"        value="true"/>
  
  
  
  1.3       +3 -3      jakarta-commons-sandbox/simplestore/build.properties.sample
  
  Index: build.properties.sample
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/simplestore/build.properties.sample,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.properties.sample	26 Jan 2002 12:00:35 -0000	1.2
  +++ build.properties.sample	9 Feb 2002 17:10:10 -0000	1.3
  @@ -1,8 +1,8 @@
   # See the README.txt file for details
   
  -# jisp.jar - jisp jar file. 
  -# (http://www.coyotegulch.com/jisp/index.html)
  -jisp.jar=lib/jisp.jar
  +# hsqldb.jar- hsqldb file. 
  +# (http://sourceforge.net/projects/hsqldb/)
  +hsqldb.jar=lib/hsqldb.jar
   
   # junit.jar - JUnit 3.2+ Classpath
   # (http://junit.org/)
  
  
  

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