You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by lh...@apache.org on 2009/06/09 17:58:56 UTC

svn commit: r783052 - /incubator/jsecurity/trunk/samples/web/pom.xml

Author: lhazlewood
Date: Tue Jun  9 15:58:56 2009
New Revision: 783052

URL: http://svn.apache.org/viewvc?rev=783052&view=rev
Log:
fixed erroneous Maven scope for logging

Modified:
    incubator/jsecurity/trunk/samples/web/pom.xml

Modified: incubator/jsecurity/trunk/samples/web/pom.xml
URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/samples/web/pom.xml?rev=783052&r1=783051&r2=783052&view=diff
==============================================================================
--- incubator/jsecurity/trunk/samples/web/pom.xml (original)
+++ incubator/jsecurity/trunk/samples/web/pom.xml Tue Jun  9 15:58:56 2009
@@ -51,10 +51,12 @@
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
+            <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
+            <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.ki</groupId>