From ffd0fa4b2862b3543fae0425a3424e01e368e3df Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 12 May 2016 15:21:24 +0200 Subject: update docs for 0.9.8 --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 44dc6a3b..ec5220ac 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ and can generate documentation in multiple formats including standard Javadoc, H ### Using the Command Line -To run Dokka from the command line, download the [Dokka jar](https://github.com/Kotlin/dokka/releases/download/0.9.7/dokka-fatjar.jar). +To run Dokka from the command line, download the [Dokka jar](https://github.com/Kotlin/dokka/releases/download/0.9.8/dokka-fatjar.jar). To generate documentation, run the following command: java -jar dokka-fatjar.jar @@ -86,7 +86,13 @@ Minimal maven configuration is ``` -by default files will be generated in `target/dokka` +By default files will be generated in `target/dokka`. + +The following goals are provided by the plugin: + + * `dokka:dokka` - generate HTML documentation in Dokka format (showing declarations in Kotlin syntax); + * `dokka:javadoc` - generate HTML documentation in JavaDoc format (showing declarations in Java syntax); + * `dokka:javadocJar` - generate a .jar file with JavaDoc format documentation. Configuring source links mapping: -- cgit