aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2016-05-12 15:21:24 +0200
committerDmitry Jemerov <yole@jetbrains.com>2016-05-12 15:21:24 +0200
commitffd0fa4b2862b3543fae0425a3424e01e368e3df (patch)
treebe47e2e253bd9694792c57df68b0e1ad328fbdf9 /README.md
parent46fbf8e88186a1e98c3956c2c3144aad8c2465da (diff)
downloaddokka-ffd0fa4b2862b3543fae0425a3424e01e368e3df.tar.gz
update docs for 0.9.8
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 8 insertions, 2 deletions
diff --git a/README.md b/README.md
index 44dc6a3be..ec5220aca 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 <source directories> <arguments>
@@ -86,7 +86,13 @@ Minimal maven configuration is
</plugin>
```
-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: