diff --git a/documentation/index.html b/documentation/index.html
index e133613..ef38095 100644
--- a/documentation/index.html
+++ b/documentation/index.html
@@ -267,6 +267,21 @@ dependencies {
compile(file("libs/async-http.jar"))
}
+
+
+ There are various kinds of dependencies:
+
+
+ - compile. Dependencies necessary to compile your project.
+ - runtime. These dependencies are not used at compile time but passed
+ to the JVM to run your application.
+ - provided. These dependencies are used at compile time but not used to run
+ your application.
+ - excluded. These dependencies will be excluded from the classpath. You can either
+ specify a versioned id (e.g.
"groupId:artifactId:version"
) or a versionless one
+ ("groupId:artifactId:"
)
+
+
Maven repos
Unauthenticated repos