@@ -17,24 +17,28 @@ nmcp {
1717}
1818
1919dependencies {
20- dokka(project( " : shared" ) )
21- dokka(project( " : meta: ksp: processor" ) )
22- dokka(project( " : meta: compiler: plugin" ) )
23- dokka(project( " : backend: jvm" ) )
24- dokka(project( " : backend: data" ) )
25- dokka(project( " : backend: profiling" ) )
26- dokka(project( " : backend: security" ) )
27- dokka(project( " : web" ) )
20+ dokka(projects. shared)
21+ dokka(projects. meta. ksp. processor)
22+ dokka(projects. meta. compiler. plugin)
23+ dokka(projects. backend. jvm)
24+ dokka(projects. backend. data)
25+ dokka(projects. backend. profiling)
26+ dokka(projects. backend. security)
27+ dokka(projects. web)
2828
29- // nmcpAggregation(project(":shared"))
30- // nmcpAggregation(project(":dep-mgmt:bom"))
31- // nmcpAggregation(project(":dep-mgmt:catalog"))
32- // nmcpAggregation(project(":meta:ksp:processor"))
33- // nmcpAggregation(project(":meta:compiler:plugin"))
34- // nmcpAggregation(project(":backend:jvm"))
35- // nmcpAggregation(project(":backend:data"))
36- // nmcpAggregation(project(":backend:profiling"))
37- // nmcpAggregation(project(":backend:security"))
38- // nmcpAggregation(project(":web"))
39- // nmcpAggregation(// project(":backend:native")
29+ nmcpAggregation(projects.shared)
30+ nmcpAggregation(projects.depMgmt.bom)
31+ nmcpAggregation(projects.depMgmt.catalog)
32+ nmcpAggregation(projects.meta.ksp.processor)
33+ nmcpAggregation(projects.meta.compiler.plugin)
34+ nmcpAggregation(projects.backend.jvm)
35+ nmcpAggregation(projects.backend.data)
36+ nmcpAggregation(projects.backend.profiling)
37+ nmcpAggregation(projects.backend.security)
38+ nmcpAggregation(projects.web)
39+
40+ // Optional modules
41+ findProject(" :backend:native" )?.let { nmcpAggregation(it) }
42+ findProject(" :compose:cmp" )?.let { nmcpAggregation(it) }
43+ findProject(" :compose:html" )?.let { nmcpAggregation(it) }
4044}
0 commit comments