aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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}}"
~~~