You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by at...@apache.org on 2009/01/28 09:45:33 UTC

svn commit: r738402 - /wicket/trunk/wicket-examples/pom.xml

Author: ate
Date: Wed Jan 28 08:45:32 2009
New Revision: 738402

URL: http://svn.apache.org/viewvc?rev=738402&view=rev
Log:
Adding explicit slf4j deps with <scope>compile</scope> to wicket-examples as the root pom.xml currently has those now defined as provided.
See also: http://svn.apache.org/viewvc?rev=737795&view=rev

Modified:
    wicket/trunk/wicket-examples/pom.xml

Modified: wicket/trunk/wicket-examples/pom.xml
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-examples/pom.xml?rev=738402&r1=738401&r2=738402&view=diff
==============================================================================
--- wicket/trunk/wicket-examples/pom.xml (original)
+++ wicket/trunk/wicket-examples/pom.xml Wed Jan 28 08:45:32 2009
@@ -96,10 +96,21 @@
 			<groupId>org.mortbay.jetty</groupId>
 			<artifactId>jetty-management</artifactId>
 		</dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>compile</scope>
+        </dependency>
 		<dependency>
 			<groupId>org.slf4j</groupId>
 			<artifactId>slf4j-log4j12</artifactId>
+            <scope>compile</scope>
 		</dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <scope>compile</scope>
+      </dependency>
 		<dependency>
 			<groupId>javax.portlet</groupId>
 			<artifactId>portlet-api</artifactId>