We have a separate module `info` which builds documentation for diktat. It has own `buildSrc` and it's a separate gradle project. Need to integrate to main gradle project to allow to use it as part of main gradle task. Also, looks like is not merged fully from maven: ```kotlin // info/buildSrc/build.gradle.kts flatDir { dirs( "$rootDir/../../diktat-rules/target", "$rootDir/../../diktat-common/target" ) } ```