Skip to content

zzxx-husky/zeromq-scala-binding

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scala Binding for ZeroMQ

This version is intend to support zeromq-4.0.4, jna-4.2.2 and jnr-0.8.4, as the lastest ones currently.

CAUTION:

  1. Since this is not an official version, use it with care. I suggest you use sbt publish-local to make it a local repository.

  2. This master branch do NOT support zeromq-4.1.4. See branch zmq-4.1.4

Here I also thank Alex for his contribution: https://github.com/alexdeleon/zeromq-scala-binding. He did most of the updates for ZeroMQLibrary and the two tests.

The Scala binding for ZeroMQ is based on ZeroMQ versions 2.1.x and uses JNA for accessing native functions. It is a thin wrapper of the ZeroMQ API, but offers also a jzmq-like API intending to be compatible with the Java binding for ZeroMQ; users of the Java binding wanting to access ZeroMQ over JNA can switch over to the Scala binding.

Installation

Scala binding for ZeroMQ is made available through a Maven repository. If you're using SBT, ament your build.sbt with:

resolvers += "Sonatype (releases)" at "https://oss.sonatype.org/content/repositories/releases/"

libraryDependencies += "org.zeromq" %% "zeromq-scala-binding" % "0.0.9"

Configure for GPG signed artefacts

When publishing a package to OSS Sonatype, you may sign the artefacts by adding the following lines to project/plugins.sbt:

resolvers += Resolver.url("sbt-plugin-release", new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases")) (Resolver.ivyStylePatterns)

addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.7")

Also, you need create a file containing your Sonatype credentials ~/.sbt/sonatype.sbt:

credentials += Credentials("Sonatype Nexus Repository Manager",
                           "oss.sonatype.org",
                           "your-sonatype-username",
                           "your-sonatype-password")

Releases

No releases published

Packages

No packages published

Languages

  • Scala 94.1%
  • Java 5.7%
  • Shell 0.2%