[seam-commits] Seam SVN: r12743 - modules/servlet/trunk.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Mon May 17 14:32:01 EDT 2010


Author: lincolnthree
Date: 2010-05-17 14:32:01 -0400 (Mon, 17 May 2010)
New Revision: 12743

Modified:
   modules/servlet/trunk/pom.xml
Log:
Added SLF4J dependencies.

Modified: modules/servlet/trunk/pom.xml
===================================================================
--- modules/servlet/trunk/pom.xml	2010-05-17 14:01:10 UTC (rev 12742)
+++ modules/servlet/trunk/pom.xml	2010-05-17 18:32:01 UTC (rev 12743)
@@ -25,12 +25,6 @@
 		<!--module>examples/??</module-->
 	</modules>
 
-	<properties>
-		<arquillian.version>1.0.0.Alpha1</arquillian.version>
-		<weld.api.version>1.0-SP1</weld.api.version>
-		<weldx.version>1.0.0-SNAPSHOT</weldx.version>
-	</properties>
-
 	<repositories>
 		<repository>
 			<id>Java.NET</id>
@@ -56,8 +50,33 @@
 		</dependencies>
 	</dependencyManagement>
 
+	<properties>
+		<arquillian.version>1.0.0.Alpha1</arquillian.version>
+		<weld.api.version>1.0-SP1</weld.api.version>
+		<weldx.version>1.0.0-SNAPSHOT</weldx.version>
+		<slf4j.version>1.5.9.RC1</slf4j.version>
+	</properties>
+
 	<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>
 
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-api</artifactId>
+			<version>${slf4j.version}</version>
+		</dependency>
+
 		<!-- Environment Dependencies -->
 		<dependency>
 			<!-- Required until the Servlet 3.0 API can be resolved in Central -->



More information about the seam-commits mailing list