aboutsummaryrefslogtreecommitdiff
path: root/site/jekyll/downloads/index.md
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-01-24 20:21:17 -0800
committerJakob Odersky <jakob@odersky.com>2016-02-03 20:46:28 -0800
commitf865a76c2f441f619b069505b73fcbd1cba1a67c (patch)
tree3f53c519f4575037bdebf8c8399ca25d50649543 /site/jekyll/downloads/index.md
parent46c30908f827e27b58166f56efa4f15917c1af4f (diff)
downloadakka-serial-f865a76c2f441f619b069505b73fcbd1cba1a67c.tar.gz
akka-serial-f865a76c2f441f619b069505b73fcbd1cba1a67c.tar.bz2
akka-serial-f865a76c2f441f619b069505b73fcbd1cba1a67c.zip
Add support for Akka streams
Diffstat (limited to 'site/jekyll/downloads/index.md')
-rw-r--r--site/jekyll/downloads/index.md12
1 files changed, 4 insertions, 8 deletions
diff --git a/site/jekyll/downloads/index.md b/site/jekyll/downloads/index.md
index 2bc2828..403d266 100644
--- a/site/jekyll/downloads/index.md
+++ b/site/jekyll/downloads/index.md
@@ -10,21 +10,17 @@ title: Downloads
<div class="col-sm-8">
### Sbt Coordinates :
-Add the following tothe build configuration:
+Add the following to your build configuration:
~~~scala
//main artifact
-libraryDependencies += "com.github.jodersky" %% "flow" % "{{site.data.current.version}}"
+libraryDependencies += "com.github.jodersky" %% "flow-core" % "{{site.data.current.version}}"
//(optional) "fat" jar containing native libraries
libraryDependencies += "com.github.jodersky" % "flow-native" % "{{site.data.current.version}}" % "runtime"
-~~~
-
-*Note (as of 2016-01-24 17:00 PST): a dependency (jni-library) is currently awaiting inclusion in the official jcenter repository. Until this is the case, an additional resolver will have to be added to the sbt build configuration:*
-
-~~~scala
-resolvers += Resolver.bintrayRepo("jodersky", "maven")
+//(optional & experimental) support for Akka streams
+libraryDependencies += "com.github.jodersky" %% "flow-stream" % "{{site.data.current.version}}"
~~~
### Archives