You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by th...@apache.org on 2003/06/09 12:41:34 UTC

cvs commit: db-ojb release-notes.txt build.xml

thma        2003/06/09 03:41:34

  Modified:    .        release-notes.txt build.xml
  Log:
  fix jdo tutorial setup routine
  
  Revision  Changes    Path
  1.16      +2 -0      db-ojb/release-notes.txt
  
  Index: release-notes.txt
  ===================================================================
  RCS file: /home/cvs/db-ojb/release-notes.txt,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- release-notes.txt	5 Jun 2003 06:05:03 -0000	1.15
  +++ release-notes.txt	9 Jun 2003 10:41:33 -0000	1.16
  @@ -35,6 +35,8 @@
   BUG FIXES:
   - fix several bugs in documentation
   - fixed writing to memo columns in MS Access
  +- fixed optimistic locking problem
  +- fixed jdo tutorial setup
   
   Please refer to our Bug tracking site under
   http://scarab.werken.com/scarab/issues/id/OJBxxx to see details for a bug
  
  
  
  1.88      +6 -2      db-ojb/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/db-ojb/build.xml,v
  retrieving revision 1.87
  retrieving revision 1.88
  diff -u -r1.87 -r1.88
  --- build.xml	3 Jun 2003 09:20:53 -0000	1.87
  +++ build.xml	9 Jun 2003 10:41:33 -0000	1.88
  @@ -217,9 +217,13 @@
       <!-- include OJB JDORI implementation -->
       <target name="with-jdori" depends="prepare, check-jdo-classes, check-jdori-classes"
               description="Compile OJB JDORI">
  -	<copy todir="${build.src}">
  +		<copy todir="${build.src}">
               <fileset dir="${src.dir}/jdori"/>
  -        </copy>
  +       	</copy>
  +       	<copy 
  +       		file="${src.test}/org/apache/ojb/tutorial5/Product.java" 
  +       		tofile="${build.src}/org/apache/ojb/tutorial5/Product.java"
  +       	/>
       </target>
   
       <!-- ================================================================== -->