You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2008/05/30 17:28:39 UTC

svn commit: r661764 - /jackrabbit/trunk/jackrabbit-text-extractors/pom.xml

Author: jukka
Date: Fri May 30 08:28:39 2008
New Revision: 661764

URL: http://svn.apache.org/viewvc?rev=661764&view=rev
Log:
JCR-1631: Replace commons-logging dependency with SLF4J
    - Need to exclude the dependency also from poi-scratchpad

Modified:
    jackrabbit/trunk/jackrabbit-text-extractors/pom.xml

Modified: jackrabbit/trunk/jackrabbit-text-extractors/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-text-extractors/pom.xml?rev=661764&r1=661763&r2=661764&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-text-extractors/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-text-extractors/pom.xml Fri May 30 08:28:39 2008
@@ -57,16 +57,23 @@
         </exclusion>
       </exclusions>
     </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-scratchpad</artifactId>
+      <exclusions>
+        <!-- JCR-1631: Replace commons-logging dependency with SLF4J -->
+        <exclusion>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
     <!-- JCR-1631: Replace commons-logging dependency with SLF4J -->
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>jcl104-over-slf4j</artifactId>
     </dependency>
     <dependency>
-      <groupId>org.apache.poi</groupId>
-      <artifactId>poi-scratchpad</artifactId>
-    </dependency>
-    <dependency>
       <groupId>pdfbox</groupId>
       <artifactId>pdfbox</artifactId>
     </dependency>