diff --git a/documentation/index.html b/documentation/index.html
index 7dc642e..19e3641 100644
--- a/documentation/index.html
+++ b/documentation/index.html
@@ -260,16 +260,18 @@ com.badlogicgames.gdx:gdx-platform:jar:natives-desktop:1.9.2
There are various kinds of dependencies:
- - compile
- - Used to compile your project.
- - runtime
- - Not used at compile time but passed to the JVM to run your application.
- - provided
- - Used at compile time but not used to run your application.
- - exclude
- - Exclude the given dependencies from the classpath. You can either
- specify a versioned id (e.g.
"groupId:artifactId:version"
) or a versionless one
- ("groupId:artifactId:"
).
+ - compile
+ - Compilation dependency.
+ - compileOptional
+ - Optional compilation dependency.
+ - exclude
+ - Exclude the given dependencies from the classpath. You can either
+ specify a versioned id (e.g.
"groupId:artifactId:version"
) or a versionless one
+ ("groupId:artifactId:"
).
+ - provided
+ - Used at compile time but not used to run your application.
+ - runtime
+ - Not used at compile time but passed to the JVM to run your application.
- native
- Used to define native dependencies.