From 31bbbcca92a328a1142552dd305ac29c2df2a1fe Mon Sep 17 00:00:00 2001 From: Sergey Mashkov Date: Fri, 10 Jul 2015 15:20:11 +0300 Subject: Building all by ant + doc --- README.md | 21 +++++++++++++++++++++ build.xml | 11 +++++++++++ 2 files changed, 32 insertions(+) diff --git a/README.md b/README.md index 950f6493..7722b8ca 100644 --- a/README.md +++ b/README.md @@ -85,3 +85,24 @@ KDoc is a flavour of markdown with symbol processing extensions. * $name - link to `name` (Kotlin string interpolation style), or ${java.lang.String} for longer references * $name: - named section, optionally bound to symbol `name`, e.g. param doc * ${code reference} -- include content of a symbol denoted by reference, e.g. code example + +### Building + +Build only dokka + +```bash +ant fatjar +``` + +Build dokka and maven plugin + +```bash +ant install-fj +cd maven-plugin +mvn install +``` + +Build dokka and install maven plugin (do not require maven installed) +```bash +ant build-and-install +``` diff --git a/build.xml b/build.xml index f8d81fc9..4174195e 100644 --- a/build.xml +++ b/build.xml @@ -4,6 +4,11 @@ + + + + + @@ -46,4 +51,10 @@ + + + + + + -- cgit