You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2017/04/15 00:14:43 UTC

arrow git commit: ARROW-720: arrow should not have a dependency on slf4j bridges in com…

Repository: arrow
Updated Branches:
  refs/heads/master 794d0204c -> 88c351abc


ARROW-720: arrow should not have a dependency on slf4j bridges in com\u2026

\u2026pile scope

Author: Julien Le Dem <ju...@apache.org>

Closes #541 from julienledem/ARROW-720 and squashes the following commits:

fa63e20 [Julien Le Dem] ARROW-720: arrow should not have a dependency on slf4j bridges in compile scope


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/88c351ab
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/88c351ab
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/88c351ab

Branch: refs/heads/master
Commit: 88c351abc24179ae1b1fa76450c2c8a4d6e4f04e
Parents: 794d020
Author: Julien Le Dem <ju...@apache.org>
Authored: Fri Apr 14 20:14:36 2017 -0400
Committer: Wes McKinney <we...@twosigma.com>
Committed: Fri Apr 14 20:14:36 2017 -0400

----------------------------------------------------------------------
 java/pom.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/88c351ab/java/pom.xml
----------------------------------------------------------------------
diff --git a/java/pom.xml b/java/pom.xml
index 5edd605..5d07186 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -469,25 +469,28 @@
       <version>${dep.slf4j.version}</version>
     </dependency>
 
+    <!-- Test Dependencies -->
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>jul-to-slf4j</artifactId>
       <version>${dep.slf4j.version}</version>
+      <scope>test</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>jcl-over-slf4j</artifactId>
       <version>${dep.slf4j.version}</version>
+      <scope>test</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>log4j-over-slf4j</artifactId>
       <version>${dep.slf4j.version}</version>
+      <scope>test</scope>
     </dependency>
 
-    <!-- Test Dependencies -->
     <dependency>
       <!-- JMockit needs to be on class path before JUnit. -->
       <groupId>com.googlecode.jmockit</groupId>