<Why does Gradle not recognize Dokka plugin in bui...
# stackoverflow
r
Why does Gradle not recognize Dokka plugin in buildSrc? I am building a multi-module Gradle project which tries to use buildSrc to define Kotlin classes, properties, functions, etc. that can be used in the build-scripts of each of my modules. Here is the directory structure of buildSrc: buildSrc ├── build.gradle.kts └── src └── main └── kotlin └── dokka ├── configureDocumentation.kt ├── Directory.kt ├── DocumentationManifest.kt ├── SourceSet.kt...