Exclude catalog modules from dokka

This commit is contained in:
Edwin Jakobs
2025-09-13 13:44:17 +02:00
parent a913f3f370
commit 38d7ba5677

View File

@@ -122,7 +122,7 @@ subprojects {
dependencies {
subprojects.findAll {
it.name.startsWith("orx-")
it.name.startsWith("orx-") && !it.name.contains("-catalog")
}.each { subproject ->
dokka(project(subproject.path))
}