todd.ginsberg
01/01/2018, 4:33 PMFormatDescriptor
for a style that does everything the html format does excpet using KotlinWebsiteSampleProcessingService
. That seems straight forward - define dokka/format/myformatname.properties and away we go. But I think the way the gradle-dokka plugin is looking up resources, I'm never going to be able to package my`FormatDescriptor` and its property files in a separate jar. I tried doing this and the packaging looks correct, and the jar for my formatter is on the build's classpath (so, in the buildscript/dependencies section), but I keep getting exceptions that it can't be found.
https://github.com/Kotlin/dokka/blob/d1eee305ef865eee8848989363db3f0fed63e11a/core/src/main/kotlin/Utilities/ServiceLocator.kt#L33yole
01/02/2018, 10:53 AMtodd.ginsberg
01/02/2018, 1:42 PMsemoro
01/05/2018, 10:46 AMdokkaFatjar
property of dokka task, and pass Gradle build coordinates there, which will point to your format package with dependency on dokka-fatjartodd.ginsberg
01/05/2018, 1:57 PM