Update of /cvsroot/hibernate/Hibernate
In directory sc8-pr-cvs1:/tmp/cvs-serv30547
Modified Files:
build.xml changelog.txt readme.txt
Log Message:
fixed an NPE that occurred on IBM JVM
nest InvocationTargetExceptions
Index: build.xml
===================================================================
RCS file: /cvsroot/hibernate/Hibernate/build.xml,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** build.xml 30 Dec 2002 12:48:51 -0000 1.33
--- build.xml 31 Dec 2002 08:22:28 -0000 1.34
***************
*** 156,160 ****
</target>
! <target name="docbook" description="Compile docbook documentation to html and copy to dist dir">
<java classname="com.icl.saxon.StyleSheet" fork="true" dir="${doc.dir}/reference/src/">
<arg value="-o"/>
--- 156,160 ----
</target>
! <target name="docbook" description="Compile docbook documentation to html">
<java classname="com.icl.saxon.StyleSheet" fork="true" dir="${doc.dir}/reference/src/">
<arg value="-o"/>
***************
*** 181,184 ****
--- 181,197 ----
<patternset refid="doc.files"/>
<exclude name="api/**/*"/>
+ <exclude name="reference/**/*"/>
+
+ </fileset>
+ </copy>
+ </target>
+
+ <target name="copydoc">
+ <mkdir dir="${dist.doc.dir}"/>
+ <copy todir="${dist.doc.dir}">
+ <fileset dir="${doc.dir}">
+ <patternset refid="doc.files"/>
+ <exclude name="*"/>
+ <exclude name="api/**/*"/>
<exclude name="reference/src/**/*"/>
<exclude name="reference/images/*.pdf"/>
***************
*** 211,215 ****
</target>
! <target name="dist" depends="jar,javadoc,copysource,copylib,extras" description="Build everything">
<zip zipfile = "${dist.dir}.zip">
<zipfileset prefix="${name}-${version}" dir="${dist.dir}"/>
--- 224,228 ----
</target>
! <target name="dist" depends="jar,javadoc,copysource,copylib,copydoc,extras" description="Build everything">
<zip zipfile = "${dist.dir}.zip">
<zipfileset prefix="${name}-${version}" dir="${dist.dir}"/>
Index: changelog.txt
===================================================================
RCS file: /cvsroot/hibernate/Hibernate/changelog.txt,v
retrieving revision 1.292
retrieving revision 1.293
diff -C2 -d -r1.292 -r1.293
*** changelog.txt 30 Dec 2002 12:48:51 -0000 1.292
--- changelog.txt 31 Dec 2002 08:22:28 -0000 1.293
***************
*** 1,5 ****
Hibernate Changelog
===================
! Changes in version 1.2.1 (xx.12.2002)
-------------------------------------
* Changed the MySQL mapping of Hibernate "timestamp" to MySQL "DATETIME" (Matthias Schwinn)
--- 1,9 ----
Hibernate Changelog
===================
! Changes in version 1.2.1b (1.1.2003)
! --------------------------------------
! * fixed an NPE that occurred while loading classes in IBM JVM
!
! Changes in version 1.2.1 (31.12.2002)
-------------------------------------
* Changed the MySQL mapping of Hibernate "timestamp" to MySQL "DATETIME" (Matthias Schwinn)
Index: readme.txt
===================================================================
RCS file: /cvsroot/hibernate/Hibernate/readme.txt,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -d -r1.56 -r1.57
*** readme.txt 25 Dec 2002 07:51:50 -0000 1.56
--- readme.txt 31 Dec 2002 08:22:28 -0000 1.57
***************
*** 1,5 ****
Hibernate - Relational Persistence for Idiomatic Java
=====================================================
! version 1.2.1 xx December 2002
Instructions
--- 1,5 ----
Hibernate - Relational Persistence for Idiomatic Java
=====================================================
! version 1.2.1b 1 January 2003
Instructions
|