osx - importing akka zeromq extension in scala -


i'm trying use zeromq extension in scala compilation fails sbt.

import akka.zeromq._ 

here error got;

object zeromq not member of package akka 

build.sbt file looks like;

name := "akka test"  version := "1.0"  scalaversion := "2.10.2"  resolvers += "typesafe repository" @ "http://repo.typesafe.com/typesafe/releases/"  resolvers += "sonatype (releases)" @ "https://oss.sonatype.org/content/repositories/releases/"  librarydependencies += "com.typesafe.akka" %% "akka-actor" % "2.2.0"  librarydependencies += "org.zeromq" %% "zeromq-scala-binding" % "0.0.6" 

i try follow installation instructions osx zeromq official page. http://zeromq.org/bindings:scala-binding

zeromq version = 2.1.11  scala version = 2.10.2  os = osx 

the akka zeromq extension appears in own package. add library dependencies:

librarydependencies += "com.typesafe.akka" %% "akka-zeromq" % "2.2.0" 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -