You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by ka...@apache.org on 2009/11/17 20:16:23 UTC

svn commit: r881447 - in /incubator/shiro/trunk: core/pom.xml pom.xml

Author: kaosko
Date: Tue Nov 17 19:16:17 2009
New Revision: 881447

URL: http://svn.apache.org/viewvc?rev=881447&view=rev
Log:
Exclude javamail dependency from log4j and mark log4j in test scope

Modified:
    incubator/shiro/trunk/core/pom.xml
    incubator/shiro/trunk/pom.xml

Modified: incubator/shiro/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/shiro/trunk/core/pom.xml?rev=881447&r1=881446&r2=881447&view=diff
==============================================================================
--- incubator/shiro/trunk/core/pom.xml (original)
+++ incubator/shiro/trunk/core/pom.xml Tue Nov 17 19:16:17 2009
@@ -60,6 +60,13 @@
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
+            <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.mail</groupId>
+                    <artifactId>mail</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 

Modified: incubator/shiro/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/shiro/trunk/pom.xml?rev=881447&r1=881446&r2=881447&view=diff
==============================================================================
--- incubator/shiro/trunk/pom.xml (original)
+++ incubator/shiro/trunk/pom.xml Tue Nov 17 19:16:17 2009
@@ -205,6 +205,10 @@
                 <scope>test</scope>
                 <exclusions>
                     <exclusion>
+                        <groupId>javax.mail</groupId>
+                        <artifactId>mail</artifactId>
+                    </exclusion>
+                    <exclusion>
                         <groupId>javax.jms</groupId>
                         <artifactId>jms</artifactId>
                     </exclusion>