diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2018-01-28 11:29:08 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2018-01-28 12:05:32 +0100 |
commit | 12f9975043aa64d10702028b51f7362b50d02f88 (patch) | |
tree | b7ac7bfcf4777d3eeeef111b49bba1a1dfbdc352 | |
parent | c5f4b681f783a1f71844aa5e3df7b841ca3de34a (diff) |
Change README to reflect publishing state on Bintray.
-rw-r--r-- | README.md | 13 |
1 files changed, 3 insertions, 10 deletions
@@ -6,15 +6,7 @@ plugin][continuations]. ## Usage -Since the library is not currently published in a publically -accessible Maven repository, you have to compile it and publish it -into your local Maven repository yourself: - -```bash -sbt publishLocal -``` - -And then, in your `build.sbt` file: +In your `build.sbt` file: ```scala // Enable CPS plugin @@ -23,8 +15,9 @@ libraryDependencies += "org.scala-lang.plugins" %% "scala-continuations-library" scalacOptions += "-P:continuations:enable", // Depend on fibers-core +resolvers += Resolver.bintrayRepo("mulk", "maven") libraryDependencies ++= Seq( - "eu.mulk" %% "fibers-core" % "0.1.0-SNAPSHOT", + "eu.mulk" %% "fibers-core" % "0.1.0", ) ``` |