[seam-commits] Seam SVN: r12303 - build/trunk/parent.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Fri Mar 26 20:35:36 EDT 2010


Author: dan.j.allen
Date: 2010-03-26 20:35:35 -0400 (Fri, 26 Mar 2010)
New Revision: 12303

Modified:
   build/trunk/parent/pom.xml
Log:
add the slf4j-jdk14 implementation in runtime scope so that
a) a default is provided
b) JBoss AS doesn't barf on slf4j conflicts


Modified: build/trunk/parent/pom.xml
===================================================================
--- build/trunk/parent/pom.xml	2010-03-26 16:34:39 UTC (rev 12302)
+++ build/trunk/parent/pom.xml	2010-03-27 00:35:35 UTC (rev 12303)
@@ -122,4 +122,19 @@
       </dependencies>
    </dependencyManagement>
 
+   <dependencies>
+      <!--
+         The reason slf4j-jdk14 is included at runtime scope is because
+         slf4j-api is compile scope and, without the JDK 1.4 bridge, JBoss AS
+         will barf. This should be included by weld-extensions to make it easy
+         to exclude if necessary.
+      -->
+      <dependency>
+         <groupId>org.slf4j</groupId>
+         <artifactId>slf4j-jdk14</artifactId>
+         <version>${slf4j.version}</version>
+         <scope>runtime</scope>
+      </dependency>
+   </dependencies>
+
 </project>



More information about the seam-commits mailing list