[jboss-svn-commits] JBL Code SVN: r37971 - labs/jbosstm/branches/JBOSSTS_4_16/maven.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Fri Mar 30 10:15:51 EDT 2012


Author: paul.robinson
Date: 2012-03-30 10:15:50 -0400 (Fri, 30 Mar 2012)
New Revision: 37971

Modified:
   labs/jbosstm/branches/JBOSSTS_4_16/maven/pom-template.xml
Log:
JBTM-1086 XTS unit tests failing to run from CL due to mising dependencies

Modified: labs/jbosstm/branches/JBOSSTS_4_16/maven/pom-template.xml
===================================================================
--- labs/jbosstm/branches/JBOSSTS_4_16/maven/pom-template.xml	2012-03-30 12:56:19 UTC (rev 37970)
+++ labs/jbosstm/branches/JBOSSTS_4_16/maven/pom-template.xml	2012-03-30 14:15:50 UTC (rev 37971)
@@ -177,10 +177,11 @@
         <!-- combined deps for the entire JBossTS. At some point we need to modularize this for different builds -->
 
         <!-- XTS also requires commons-codec (transitive via httpclient?) and commons-httpclient to compile the localjunit module. needed for test only, not XTS runtime dep. -->
-        <!--<dependency>-->
-            <!--<groupId>commons-codec</groupId>-->
-            <!--<artifactId>commons-codec</artifactId>-->
-        <!--</dependency>-->
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <version>1.4</version>
+        </dependency>
 
         <dependency>
             <groupId>commons-httpclient</groupId>
@@ -190,25 +191,29 @@
 
         <!--  commons-logging, jcl-over-slf4j, slf4j-api,  slf4j-simple all just test time deps for localjunit? -->
 
-        <!--<dependency>-->
-            <!--<groupId>commons-logging</groupId>-->
-            <!--<artifactId>commons-logging</artifactId>-->
-        <!--</dependency>-->
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.1.1</version>
+        </dependency>
 
-        <!--<dependency>-->
-            <!--<groupId>org.slf4j</groupId>-->
-            <!--<artifactId>jcl-over-slf4j</artifactId>-->
-        <!--</dependency>-->
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>jcl-over-slf4j</artifactId>
+            <version>1.6.1</version>
+        </dependency>
 
-        <!--<dependency>-->
-            <!--<groupId>org.slf4j</groupId>-->
-            <!--<artifactId>slf4j-api</artifactId>-->
-        <!--</dependency>-->
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <version>1.6.1</version>
+        </dependency>
 
-        <!--<dependency>-->
-            <!--<groupId>org.slf4j</groupId>-->
-            <!--<artifactId>slf4j-simple</artifactId>-->
-        <!--</dependency>-->
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <version>1.6.1</version>
+        </dependency>
 
         <!-- JTA (local: ArjunaJTA/jta and remote: ArjunaJTS/jtax) need JTA and JCA (for tx inflow) apis. -->
 



More information about the jboss-svn-commits mailing list