aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2018-01-28 11:29:08 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2018-01-28 12:05:32 +0100
commit12f9975043aa64d10702028b51f7362b50d02f88 (patch)
treeb7ac7bfcf4777d3eeeef111b49bba1a1dfbdc352 /README.md
parentc5f4b681f783a1f71844aa5e3df7b841ca3de34a (diff)
Change README to reflect publishing state on Bintray.
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 3 insertions, 10 deletions
diff --git a/README.md b/README.md
index a54992f..075aee4 100644
--- a/README.md
+++ b/README.md
@@ -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",
)
```