Download

Reactors.IO is hosted on Sonatype OSSRH. You can download the JAR directly, or add Reactors.IO to your SBT file as a managed dependency.

Direct

Scala 2.11

Scala 2.10

  • latest stable version: 0.8

SBT

To add Reactors.IO to you project, add the following lines to your SBT build definition file (e.g. build.sbt):

resolvers ++= Seq(
  "Sonatype OSS Snapshots" at
    "https://oss.sonatype.org/content/repositories/snapshots",
  "Sonatype OSS Releases" at
    "https://oss.sonatype.org/content/repositories/releases"
)

libraryDependencies ++= Seq(
  "io.reactors" %% "reactors" % "0.8")

If you want to live on the cutting edge, you can use the nightly snapshot by adding the following line instead:

libraryDependencies ++= Seq(
  "io.reactors" %% "reactors" % "0.9-SNAPSHOT"