[jboss-svn-commits] JBL Code SVN: r34453 - in labs/jbosstm/trunk: maven and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Aug 2 06:16:58 EDT 2010


Author: adinn
Date: 2010-08-02 06:16:58 -0400 (Mon, 02 Aug 2010)
New Revision: 34453

Modified:
   labs/jbosstm/trunk/XTS/localjunit/run-interop-tests.xml
   labs/jbosstm/trunk/XTS/localjunit/run-tests.xml
   labs/jbosstm/trunk/maven/pom-template.xml
Log:
added rules to load sl4j jars into TS external lib directory and modified XTS localjunit run scripts to pick them up as httpclient has suddenly found the need for them :-)

Modified: labs/jbosstm/trunk/XTS/localjunit/run-interop-tests.xml
===================================================================
--- labs/jbosstm/trunk/XTS/localjunit/run-interop-tests.xml	2010-08-02 10:13:29 UTC (rev 34452)
+++ labs/jbosstm/trunk/XTS/localjunit/run-interop-tests.xml	2010-08-02 10:16:58 UTC (rev 34453)
@@ -43,6 +43,9 @@
         <pathelement location="${localjunit.lib.dir}/localjunit.jar"/>
         <pathelement location="${jbossts.build.extlib.dir}/commons-httpclient.jar"/>
 		<pathelement location="${jbossts.build.extlib.dir}/commons-codec.jar"/>
+        <pathelement location="${jbossts.build.extlib.dir}/slf4j-api.jar"/>
+        <pathelement location="${jbossts.build.extlib.dir}/jcl-over-slf4j.jar"/>
+        <pathelement location="${jbossts.build.extlib.dir}/slf4j-simple.jar"/>
 		<pathelement location="${jbossts.build.extlib.dir}/junit.jar"/>
     </path>
 

Modified: labs/jbosstm/trunk/XTS/localjunit/run-tests.xml
===================================================================
--- labs/jbosstm/trunk/XTS/localjunit/run-tests.xml	2010-08-02 10:13:29 UTC (rev 34452)
+++ labs/jbosstm/trunk/XTS/localjunit/run-tests.xml	2010-08-02 10:16:58 UTC (rev 34453)
@@ -41,6 +41,9 @@
         <pathelement location="${localjunit.lib.dir}/localjunit.jar"/>
         <pathelement location="${jbossts.build.extlib.dir}/commons-httpclient.jar"/>
 		<pathelement location="${jbossts.build.extlib.dir}/commons-codec.jar"/>
+        <pathelement location="${jbossts.build.extlib.dir}/slf4j-api.jar"/>
+        <pathelement location="${jbossts.build.extlib.dir}/jcl-over-slf4j.jar"/>
+        <pathelement location="${jbossts.build.extlib.dir}/slf4j-simple.jar"/>
 		<pathelement location="${jbossts.build.extlib.dir}/junit.jar"/>
     </path>
 

Modified: labs/jbosstm/trunk/maven/pom-template.xml
===================================================================
--- labs/jbosstm/trunk/maven/pom-template.xml	2010-08-02 10:13:29 UTC (rev 34452)
+++ labs/jbosstm/trunk/maven/pom-template.xml	2010-08-02 10:16:58 UTC (rev 34453)
@@ -200,11 +200,20 @@
         </dependency>
         
         <dependency>
-            <groupId>log4j</groupId>
-            <artifactId>log4j</artifactId>
-        </dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>jcl-over-slf4j</artifactId>
+       </dependency>
 
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+       </dependency>
 
+      <dependency>
+            <groupId>org.slf4j</groupId>
+	    <artifactId>slf4j-simple</artifactId>
+      </dependency>
+
         <!-- JTA (local: ArjunaJTA/jta and remote: ArjunaJTS/jtax) need JTA and JCA (for tx inflow) apis. -->
 
         <dependency>



More information about the jboss-svn-commits mailing list