[jboss-cvs] Repository SVN: r30421 - in quartz: 1.5.2.patch01-brew and 2 other directories.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Wed Oct 21 13:46:57 EDT 2009
Author: permaine
Date: 2009-10-21 13:46:57 -0400 (Wed, 21 Oct 2009)
New Revision: 30421
Added:
quartz/1.5.2.patch01-brew/
quartz/1.5.2.patch01-brew/component-info.xml
quartz/1.5.2.patch01-brew/lib/
quartz/1.5.2.patch01-brew/lib/quartz-all.jar
quartz/1.5.2.patch01-brew/lib/quartz.jar
quartz/1.5.2.patch01-brew/src/
quartz/1.5.2.patch01-brew/src/quartz-1.5.2-JBPAPP-2599.patch
quartz/1.5.2.patch01-brew/src/quartz-1.5.2-build_xml.patch
quartz/1.5.2.patch01-brew/src/quartz-1.5.2.zip
Log:
Add Brew Build 1.5.2.patch01-brew
Added: quartz/1.5.2.patch01-brew/component-info.xml
===================================================================
--- quartz/1.5.2.patch01-brew/component-info.xml (rev 0)
+++ quartz/1.5.2.patch01-brew/component-info.xml 2009-10-21 17:46:57 UTC (rev 30421)
@@ -0,0 +1,21 @@
+<project name="quartz-component-info">
+ <!-- ============================================================ -->
+ <!-- Quartz -->
+ <!-- ============================================================ -->
+ <component id="quartz"
+ licenseType="apache-2.0"
+ version="1.5.2.patch01-brew"
+ projectHome="http://www.opensymphony.com/"
+ description="Quartz is a full-featured, open source job scheduling system that can be integrated with, or used along side virtually any J2EE or J2SE application"
+ scm=":ext:cvs.devel.redhat.com:/cvs/dist/quartz"
+ tag="quartz-1_5_2-1jpp_patch01_ep1_4_el4">
+ <!-- Built using JDK 1.4 -->
+ <artifact id="quartz-all.jar"/>
+ <artifact id="quartz.jar"/>
+ <export>
+ <include input="quartz-all.jar"/>
+ <include input="quartz.jar"/>
+ </export>
+ </component>
+
+</project>
Added: quartz/1.5.2.patch01-brew/lib/quartz-all.jar
===================================================================
(Binary files differ)
Property changes on: quartz/1.5.2.patch01-brew/lib/quartz-all.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: quartz/1.5.2.patch01-brew/lib/quartz.jar
===================================================================
(Binary files differ)
Property changes on: quartz/1.5.2.patch01-brew/lib/quartz.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: quartz/1.5.2.patch01-brew/src/quartz-1.5.2-JBPAPP-2599.patch
===================================================================
--- quartz/1.5.2.patch01-brew/src/quartz-1.5.2-JBPAPP-2599.patch (rev 0)
+++ quartz/1.5.2.patch01-brew/src/quartz-1.5.2-JBPAPP-2599.patch 2009-10-21 17:46:57 UTC (rev 30421)
@@ -0,0 +1,63 @@
+--- src/java/org/quartz/impl/jdbcjobstore/HSQLDBDelegate.java.orig 2009-10-20 13:09:01.000000000 -0400
++++ src/java/org/quartz/impl/jdbcjobstore/HSQLDBDelegate.java 2009-10-20 13:40:05.000000000 -0400
+@@ -93,7 +93,7 @@ public class HSQLDBDelegate extends StdJ
+ throws ClassNotFoundException, IOException, SQLException {
+ InputStream binaryInput = rs.getBinaryStream(colName);
+
+- if(binaryInput == null)
++ if(binaryInput == null || binaryInput.available() == 0)
+ return null;
+
+ ObjectInputStream in = new ObjectInputStream(binaryInput);
+--- src/java/org/quartz/impl/jdbcjobstore/StdJDBCDelegate.java.orig 2009-10-20 13:09:24.000000000 -0400
++++ src/java/org/quartz/impl/jdbcjobstore/StdJDBCDelegate.java 2009-10-20 13:45:30.000000000 -0400
+@@ -3865,7 +3865,7 @@ public class StdJDBCDelegate implements
+ Object obj = null;
+
+ Blob blobLocator = rs.getBlob(colName);
+- if (blobLocator != null) {
++ if (blobLocator != null && blobLocator.length() != 0) {
+ InputStream binaryInput = blobLocator.getBinaryStream();
+
+ if (null != binaryInput) {
+--- src/java/org/quartz/impl/jdbcjobstore/CloudscapeDelegate.java.orig 2009-10-20 13:08:53.000000000 -0400
++++ src/java/org/quartz/impl/jdbcjobstore/CloudscapeDelegate.java 2009-10-20 13:42:40.000000000 -0400
+@@ -37,6 +37,7 @@ import org.apache.commons.logging.Log;
+ *
+ * @author James House
+ * @author Sridhar Jawaharlal, Srinivas Venkatarangaiah
++ * @deprecated Use the StdJDBCDelegate for latest versions of Derby
+ */
+ public class CloudscapeDelegate extends StdJDBCDelegate {
+ /**
+@@ -98,7 +99,7 @@ public class CloudscapeDelegate extends
+
+ byte[] inputBytes = rs.getBytes(colName);
+
+- if (null != inputBytes) {
++ if (null != inputBytes && inputBytes.length != 0) {
+ ByteArrayInputStream bais = new
+ ByteArrayInputStream(inputBytes);
+
+--- src/java/org/quartz/impl/jdbcjobstore/PointbaseDelegate.java.orig 2009-10-20 13:09:45.000000000 -0400
++++ src/java/org/quartz/impl/jdbcjobstore/PointbaseDelegate.java 2009-10-20 13:43:55.000000000 -0400
+@@ -487,7 +487,7 @@ public class PointbaseDelegate extends S
+
+ InputStream binaryInput = new ByteArrayInputStream(binaryData);
+
+- if (null != binaryInput) {
++ if (null != binaryInput && binaryInput.available() != 0) {
+ ObjectInputStream in = new ObjectInputStream(binaryInput);
+ obj = in.readObject();
+ in.close();
+--- src/java/org/quartz/impl/jdbcjobstore/MSSQLDelegate.java.orig 2009-10-20 13:09:52.000000000 -0400
++++ src/java/org/quartz/impl/jdbcjobstore/MSSQLDelegate.java 2009-10-20 13:44:10.000000000 -0400
+@@ -79,7 +79,7 @@ public class MSSQLDelegate extends StdJD
+ throws ClassNotFoundException, IOException, SQLException {
+ InputStream binaryInput = rs.getBinaryStream(colName);
+
+- if(binaryInput == null)
++ if(binaryInput == null || binaryInput.available() == 0)
+ return null;
+
+ ObjectInputStream in = new ObjectInputStream(binaryInput);
Added: quartz/1.5.2.patch01-brew/src/quartz-1.5.2-build_xml.patch
===================================================================
--- quartz/1.5.2.patch01-brew/src/quartz-1.5.2-build_xml.patch (rev 0)
+++ quartz/1.5.2.patch01-brew/src/quartz-1.5.2-build_xml.patch 2009-10-21 17:46:57 UTC (rev 30421)
@@ -0,0 +1,11 @@
+--- build.xml.sav 2006-06-11 09:44:04.000000000 +0200
++++ build.xml 2006-06-11 09:45:45.000000000 +0200
+@@ -13,7 +13,7 @@
+
+ <property file="build.properties"/>
+
+- <property name="opensymphony.project.dir" location="../opensymphony"/>
++ <property name="opensymphony.project.dir" location="opensymphony"/>
+
+ <copy todir="${basedir}" failonerror="false" overwrite="true">
+ <fileset file="${opensymphony.project.dir}/common/osbuild.xml" />
Added: quartz/1.5.2.patch01-brew/src/quartz-1.5.2.zip
===================================================================
(Binary files differ)
Property changes on: quartz/1.5.2.patch01-brew/src/quartz-1.5.2.zip
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
More information about the jboss-cvs-commits
mailing list