diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2017-02-24 11:33:17 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2017-02-24 11:40:16 +0100 |
commit | bfd615dde13ef6ebbfaca6b042f263a57c11018c (patch) | |
tree | 10f91003d6bee78c236ae86b4671864a591689f7 /integration | |
parent | edb0d90fbc44f611d806a06a12f1d8280e274b8e (diff) | |
download | dokka-bfd615dde13ef6ebbfaca6b042f263a57c11018c.tar.gz dokka-bfd615dde13ef6ebbfaca6b042f263a57c11018c.tar.bz2 dokka-bfd615dde13ef6ebbfaca6b042f263a57c11018c.zip |
Option to skip declarations in root package from generated documentation (they can't be imported anyway)
Diffstat (limited to 'integration')
-rw-r--r-- | integration/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrap.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/integration/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrap.kt b/integration/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrap.kt index 50e8fb8d..845f86a6 100644 --- a/integration/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrap.kt +++ b/integration/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrap.kt @@ -13,6 +13,7 @@ interface DokkaBootstrap { outputDir: String, format: String, includeNonPublic: Boolean, + includeRootPackage: Boolean, reportUndocumented: Boolean, skipEmptyPackages: Boolean, skipDeprecated: Boolean, |