You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iota.apache.org by to...@apache.org on 2016/07/05 20:30:00 UTC

[3/7] incubator-iota git commit: IOTA-21 change zmq dependency scope

IOTA-21 change zmq dependency scope


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

Branch: refs/heads/master
Commit: e1031e8b556d0b0826c20ed2da7fddf3d5954c6d
Parents: 6ebd137
Author: sandy <ph...@gmail.com>
Authored: Mon Jul 4 23:40:59 2016 +0530
Committer: sandy <ph...@gmail.com>
Committed: Mon Jul 4 23:40:59 2016 +0530

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


http://git-wip-us.apache.org/repos/asf/incubator-iota/blob/e1031e8b/Performers/project/Build.scala
----------------------------------------------------------------------
diff --git a/Performers/project/Build.scala b/Performers/project/Build.scala
index 8f14fb0..b4e9504 100644
--- a/Performers/project/Build.scala
+++ b/Performers/project/Build.scala
@@ -24,7 +24,7 @@ object ModuleDependencies {
 
   val FeyDependencies = provided(akka_actor, fey)
   val StreamDependencies = provided(akka_actor, fey)
-  val ZMQDependecies = provided(akka_actor, zmq, fey)
+  val ZMQDependecies = provided(akka_actor,  fey) ++ compile(zmq)
 }
 
 object PerformersBuild extends Build {