You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ju...@apache.org on 2013/09/11 19:03:47 UTC

[02/36] git commit: KAFKA-974 can't use public release maven repo because of failure of downloaded dependency

KAFKA-974 can't use public release maven repo because of failure of downloaded dependency


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

Branch: refs/heads/trunk
Commit: b1891e700889e8e4ae78a6d73d785ff681ac70b9
Parents: bf31a6b
Author: Joe Stein <jo...@Joes-MacBook-Air.local>
Authored: Sun Jul 14 21:21:13 2013 -0400
Committer: Joe Stein <jo...@Joes-MacBook-Air.local>
Committed: Sun Jul 14 21:21:13 2013 -0400

----------------------------------------------------------------------
 project/Build.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/b1891e70/project/Build.scala
----------------------------------------------------------------------
diff --git a/project/Build.scala b/project/Build.scala
index bad93db..b3858f3 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -52,7 +52,7 @@ object KafkaBuild extends Build {
     javacOptions ++= Seq("-Xlint:unchecked", "-source", "1.5"),
     parallelExecution in Test := false, // Prevent tests from overrunning each other
     libraryDependencies ++= Seq(
-      "log4j"                 % "log4j"        % "1.2.15",
+      "log4j"                 % "log4j"        % "1.2.15" exclude("javax.jms", "jms"),
       "net.sf.jopt-simple"    % "jopt-simple"  % "3.2",
       "org.slf4j"             % "slf4j-simple" % "1.6.4"
     ),