[jboss-cvs] Repository SVN: r3519 - in jboss/cache: 1.4.1.SP9-brew and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Mar 28 11:20:43 EDT 2008


Author: fnasser at redhat.com
Date: 2008-03-28 11:20:43 -0400 (Fri, 28 Mar 2008)
New Revision: 3519

Added:
   jboss/cache/1.4.1.SP9-brew/
   jboss/cache/1.4.1.SP9-brew/README.txt
   jboss/cache/1.4.1.SP9-brew/component-info.xml
   jboss/cache/1.4.1.SP9-brew/lib/
   jboss/cache/1.4.1.SP9-brew/lib/jboss-cache-jdk50.jar
   jboss/cache/1.4.1.SP9-brew/src/
   jboss/cache/1.4.1.SP9-brew/src/JBossCache-1.4.1.SP9-src.tar.gz
   jboss/cache/1.4.1.SP9-brew/src/jboss-cache-GlobalTransactionTest.patch
Log:
Add Brew-built 1.4.1.SP9

Added: jboss/cache/1.4.1.SP9-brew/README.txt
===================================================================
--- jboss/cache/1.4.1.SP9-brew/README.txt	                        (rev 0)
+++ jboss/cache/1.4.1.SP9-brew/README.txt	2008-03-28 15:20:43 UTC (rev 3519)
@@ -0,0 +1,10 @@
+NAME:    JBossCache
+VERSION: 1.4.1.SP8_CP01
+PROJECT: http://www.jboss.com/products/jbosscache
+PURPOSE: Used by Clustering in JBossAS, HTTP session replication
+
+With fix for JBCACHE-1246, JBCACHE-1255 and maybe others
+
+Grab the source with:
+svn export https://svn.jboss.org/repos/jbosscache/core/cp_tags/1.4.1.SP8_CP01/
+JBossCache-1.4.1.SP8_CP01-src

Added: jboss/cache/1.4.1.SP9-brew/component-info.xml
===================================================================
--- jboss/cache/1.4.1.SP9-brew/component-info.xml	                        (rev 0)
+++ jboss/cache/1.4.1.SP9-brew/component-info.xml	2008-03-28 15:20:43 UTC (rev 3519)
@@ -0,0 +1,21 @@
+<project name="jboss-cache-component-info">
+
+   <!-- ============================================================ -->
+   <!-- jboss/cache                                                      -->
+   <!-- ============================================================ -->
+
+   <component id="jboss/cache"
+              version="1.4.1.SP9-brew"
+              licenseType="lgpl"
+              projectHome="http://www.jboss.org/products/jbosscache"
+              description="JBoss Cache is a product designed to cache 
+              frequently accessed Java objects in order to dramatically improve 
+              the performance of e-business applications."
+              tag="jboss-cache-1_4_1-4_SP9_1jpp_ep1_1_el4">
+
+      <artifact id="jboss-cache-jdk50.jar"/>
+      <export>
+         <include input="jboss-cache-jdk50.jar"/>
+      </export>
+   </component>
+</project>

Added: jboss/cache/1.4.1.SP9-brew/lib/jboss-cache-jdk50.jar
===================================================================
(Binary files differ)


Property changes on: jboss/cache/1.4.1.SP9-brew/lib/jboss-cache-jdk50.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: jboss/cache/1.4.1.SP9-brew/src/JBossCache-1.4.1.SP9-src.tar.gz
===================================================================
(Binary files differ)


Property changes on: jboss/cache/1.4.1.SP9-brew/src/JBossCache-1.4.1.SP9-src.tar.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: jboss/cache/1.4.1.SP9-brew/src/jboss-cache-GlobalTransactionTest.patch
===================================================================
--- jboss/cache/1.4.1.SP9-brew/src/jboss-cache-GlobalTransactionTest.patch	                        (rev 0)
+++ jboss/cache/1.4.1.SP9-brew/src/jboss-cache-GlobalTransactionTest.patch	2008-03-28 15:20:43 UTC (rev 3519)
@@ -0,0 +1,79 @@
+--- tests/functional/org/jboss/cache/GlobalTransactionTest.java.sav	2006-06-12 14:21:01.000000000 -0400
++++ tests/functional/org/jboss/cache/GlobalTransactionTest.java	2006-06-12 14:27:05.000000000 -0400
+@@ -34,7 +34,12 @@
+ 
+    public void testEquality() throws UnknownHostException
+    {
+-      IpAddress a1=new IpAddress("localhost", 4444);
++      IpAddress a1=null;
++      try {
++         a1=new IpAddress("localhost", 4444);
++      } catch(UnknownHostException e) {
++         e.printStackTrace();
++      }
+       GlobalTransaction tx1, tx2;
+ 
+       tx1=GlobalTransaction.create(a1);
+@@ -50,21 +55,36 @@
+ 
+    public void testEqualityWithOtherObject() throws UnknownHostException
+    {
+-      IpAddress a1=new IpAddress("localhost", 4444);
++      IpAddress a1=null;
++      try {
++         a1=new IpAddress("localhost", 4444);
++      } catch(UnknownHostException e) {
++         e.printStackTrace();
++      }
+       GlobalTransaction tx1=GlobalTransaction.create(a1);
+       System.out.println("\ntx1: " + tx1);
+       assertFalse(tx1.equals(Thread.currentThread()));
+    }
+ 
+    public void testEqualityWithNull() throws UnknownHostException
+-   {
+-      IpAddress a1=new IpAddress("localhost", 4444);
++   {
++      IpAddress a1=null;
++      try {
++         a1=new IpAddress("localhost", 4444);
++      } catch(UnknownHostException e) {
++         e.printStackTrace();
++      }
+       GlobalTransaction tx1=GlobalTransaction.create(a1);
+       System.out.println("\ntx1: " + tx1);
+       assertFalse(tx1.equals(null));
+    }
+ 
+    public void testHashcode() throws UnknownHostException
+-   {
+-      IpAddress a1=new IpAddress("localhost", 4444);
++   {
++      IpAddress a1=null;
++      try {
++         a1=new IpAddress("localhost", 4444);
++      } catch(UnknownHostException e) {
++         e.printStackTrace();
++      }
+       GlobalTransaction tx1, tx2;
+ 
+ 
+--- tests/functional/org/jboss/cache/GlobalTransactionTest.java.sav	2006-06-12 14:21:01.000000000 -0400
++++ tests/functional/org/jboss/cache/GlobalTransactionTest.java	2006-06-12 14:27:05.000000000 -0400
+@@ -110,8 +110,14 @@
+ 
+    public void testExternalization() throws UnknownHostException
+    {
+-      IpAddress a1=new IpAddress("localhost", 4444);
+-      IpAddress a2=new IpAddress("localhost", 5555);
++      IpAddress a1=null;
++      IpAddress a2=null;
++      try {
++         a1=new IpAddress("localhost", 4444);
++         a2=new IpAddress("localhost", 5555);
++      } catch(UnknownHostException e) {
++         e.printStackTrace();
++      }
+       GlobalTransaction tx1, tx2, tx1_copy=null, tx2_copy=null;
+       ByteArrayOutputStream bos=null;
+       ByteArrayInputStream bis=null;




More information about the jboss-cvs-commits mailing list