[Proxool-cvs] proxool build.xml,1.76,1.77 CHANGES.txt,1.45,1.46
UNMAINTAINED!
Brought to you by:
billhorsman
From: <bil...@us...> - 2007-01-10 09:24:37
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11999 Modified Files: build.xml CHANGES.txt Log Message: 0.9.0RC3 Index: build.xml =================================================================== RCS file: /cvsroot/proxool/proxool/build.xml,v retrieving revision 1.76 retrieving revision 1.77 diff -C2 -d -r1.76 -r1.77 *** build.xml 2 Nov 2006 10:01:32 -0000 1.76 --- build.xml 10 Jan 2007 09:24:35 -0000 1.77 *************** *** 27,31 **** <!-- Currect release, e.g. 0.6 --> ! <property name="release" value="0.9.0RC2+"/> <!-- Currect release, e.g. 0.6 --> --- 27,31 ---- <!-- Currect release, e.g. 0.6 --> ! <property name="release" value="0.9.0RC3+"/> <!-- Currect release, e.g. 0.6 --> *************** *** 198,202 **** depends="init,build-src,repackage-dependencies" > ! <javac srcdir="${build-dir}/src/java" destdir="${build-dir}/classes" debug="${debug}"> <classpath refid="source"/> <classpath path="build/proxool-cglib.jar"/> --- 198,202 ---- depends="init,build-src,repackage-dependencies" > ! <javac srcdir="${build-dir}/src/java" target="1.2" source="1.2" destdir="${build-dir}/classes" debug="${debug}"> <classpath refid="source"/> <classpath path="build/proxool-cglib.jar"/> Index: CHANGES.txt =================================================================== RCS file: /cvsroot/proxool/proxool/CHANGES.txt,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** CHANGES.txt 2 Nov 2006 10:01:11 -0000 1.45 --- CHANGES.txt 10 Jan 2007 09:24:35 -0000 1.46 *************** *** 9,13 **** - New naming policy for Cglib stops conflicts with other Cglib instances that are running ! (Even ones in different packages). Without using our own naming policy we end up with exceptions like: java.lang.LinkageError: duplicate class definition: --- 9,13 ---- - New naming policy for Cglib stops conflicts with other Cglib instances that are running ! (even ones in different packages). Without using our own naming policy we end up with exceptions like: java.lang.LinkageError: duplicate class definition: *************** *** 16,21 **** - Added ProxoolFacade.disableShutdownHook so that you can choose to explicitly shutdown Proxool programatically. This is useful because the order that the JVM calls shutdown ! hooks isn't easily controlled and you might want to shutdown Proxool *after* you've ! done some cleaning up yourself. - Fixed bug in ProxoolDataSource to add in maximum-active-time. Credit to Paolo Di Tommaso. --- 16,21 ---- - Added ProxoolFacade.disableShutdownHook so that you can choose to explicitly shutdown Proxool programatically. This is useful because the order that the JVM calls shutdown ! hooks isn't easily controlled and you might want to shutdown Proxool *after* you've ! done some cleaning up yourself. Suggested by Alex Lemaire. - Fixed bug in ProxoolDataSource to add in maximum-active-time. Credit to Paolo Di Tommaso. |