aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-03-18 21:28:27 -0700
committerJakob Odersky <jakob@odersky.com>2016-03-18 21:29:07 -0700
commit63bb4a258aa791222ba6789c51c2c28f44266994 (patch)
tree44d2893ae1a226568e3c06d4c20ace8fad2b60e3
parentcac80dfd3c5482cb0360f0aa87c74879d66b635d (diff)
downloadakka-serial-63bb4a258aa791222ba6789c51c2c28f44266994.tar.gz
akka-serial-63bb4a258aa791222ba6789c51c2c28f44266994.tar.bz2
akka-serial-63bb4a258aa791222ba6789c51c2c28f44266994.zip
Add jcenter resolver to documentations
-rw-r--r--site/jekyll/documentation/manual.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/site/jekyll/documentation/manual.md b/site/jekyll/documentation/manual.md
index 738e64a..fdda38b 100644
--- a/site/jekyll/documentation/manual.md
+++ b/site/jekyll/documentation/manual.md
@@ -7,9 +7,11 @@ layout: page
{:toc}
# Getting Started
-Flow uses sbt as build system. To get started, include a dependency to flow in your project:
+Flow uses sbt as build system. To get started, add the Bintray jcenter resolver and include a dependency to flow in your project:
~~~scala
+resolvers += Resolver.jcenterRepo
+
libraryDependencies += "com.github.jodersky" %% "flow-core" % "{{site.data.current.version}}"
~~~