[jboss-svn-commits] JBL Code SVN: r34753 - in labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP: ArjunaCore/tsmx/bin/com/arjuna/ats/tools/objectstorebrowser and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Aug 17 07:03:02 EDT 2010


Author: mmusgrov
Date: 2010-08-17 07:03:01 -0400 (Tue, 17 Aug 2010)
New Revision: 34753

Modified:
   labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/objectstorebrowser/PluginClassloader.java
   labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/Build.txt
Log:
[JBPAPP-4814] catch Throwable so that the plugin completes its' initialisation

Modified: labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/objectstorebrowser/PluginClassloader.java
===================================================================
--- labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/objectstorebrowser/PluginClassloader.java	2010-08-17 09:34:34 UTC (rev 34752)
+++ labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/ArjunaCore/tsmx/bin/com/arjuna/ats/tools/objectstorebrowser/PluginClassloader.java	2010-08-17 11:03:01 UTC (rev 34753)
@@ -131,9 +131,9 @@
                 {
                     System.err.println("Warning: The class '"+obj+"' is not defined");
                 }
-                catch (Exception e)
+                catch (Throwable e)
                 {
-                    System.err.println("Warning: cCould not instantiate the class '"+obj+"' - " + e.getMessage());
+                    System.err.println("Warning: Could not instantiate the class '"+obj+"' - " + e.getMessage());
                 }
         }
     }

Modified: labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/Build.txt
===================================================================
--- labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/Build.txt	2010-08-17 09:34:34 UTC (rev 34752)
+++ labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/Build.txt	2010-08-17 11:03:01 UTC (rev 34753)
@@ -12,4 +12,6 @@
 
 ant jbossjts	
 
-will build the JTS version with AS integration 
\ No newline at end of file
+will build the JTS version with AS integration 
+
+Note that ant versions after apache-ant-1.7.1 no longer distribute some libraries required by this build (notably xerces).



More information about the jboss-svn-commits mailing list