adding dependencies to start.adoc

git-svn-id: https://svn.apache.org/repos/asf/openwebbeans/meecrowave/trunk@1855399 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/meecrowave-doc/src/main/jbake/content/start.adoc b/meecrowave-doc/src/main/jbake/content/start.adoc
index 5f217d3..eaed074 100755
--- a/meecrowave-doc/src/main/jbake/content/start.adoc
+++ b/meecrowave-doc/src/main/jbake/content/start.adoc
@@ -8,6 +8,32 @@
 
 == Your first application
 
+=== Dependencies
+
+Just add in any Maven `pom.xml` - or gradle `build.gradle` the following dependency:
+
+[source,xml]
+----
+<dependency>
+  <groupId>org.apache.meecrowave</groupId>
+  <artifactId>meecrowave-core</artifactId>
+  <version>${meecrowave.version}</version>
+</dependency>
+----
+
+If you intend to reuse our `Cli` main you should also add:
+
+[source,xml]
+----
+<dependency>
+  <groupId>commons-cli</groupId>
+  <artifactId>commons-cli</artifactId>
+  <version>1.4</version>
+</dependency>
+----
+
+=== Runtime
+
 Meecrowave relies on JAX-RS and CDI so to start you just need to write a JAX-RS endpoint:
 
 [source,java]
@@ -22,7 +48,7 @@
 }
 ----
 
-Then booting Meecrowave is as easy as launching:
+Then booting Meecrowave is as easy as launching - or reuse `org.apache.meecrowave.runner.Cli` provided main:
 
 [source,java]
 ----