diff options
author | Andrzej Ratajczak <andrzej.ratajczak98@gmail.com> | 2020-04-01 17:02:18 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-04-30 12:37:30 +0200 |
commit | 7f9d595f604e269fb918dc69cf2f80c19aef58c2 (patch) | |
tree | 132d84a71c3aae87894ecce9a618ca9df12f2dc7 /core/src/main/kotlin/configuration.kt | |
parent | badb811e6de55c460301ae3f911f3d7c0dc9e39e (diff) | |
download | dokka-7f9d595f604e269fb918dc69cf2f80c19aef58c2.tar.gz dokka-7f9d595f604e269fb918dc69cf2f80c19aef58c2.tar.bz2 dokka-7f9d595f604e269fb918dc69cf2f80c19aef58c2.zip |
Adds possibility to configure plugins
Diffstat (limited to 'core/src/main/kotlin/configuration.kt')
-rw-r--r-- | core/src/main/kotlin/configuration.kt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/src/main/kotlin/configuration.kt b/core/src/main/kotlin/configuration.kt index 19835fa4..34671c4e 100644 --- a/core/src/main/kotlin/configuration.kt +++ b/core/src/main/kotlin/configuration.kt @@ -33,6 +33,7 @@ interface DokkaConfiguration { val passesConfigurations: List<PassConfiguration> val impliedPlatforms: List<String> val pluginsClasspath: List<File> + val pluginsConfiguration: Map<String, String> interface PassConfiguration { val moduleName: String @@ -100,3 +101,5 @@ interface DokkaConfiguration { } } } + + |