File tree Expand file tree Collapse file tree 4 files changed +23
-5
lines changed
dynamodb-mapper-annotations Expand file tree Collapse file tree 4 files changed +23
-5
lines changed Original file line number Diff line number Diff line change @@ -108,10 +108,7 @@ apiValidation {
108108 ).filter { it in availableSubprojects } // Some projects may not be in the build depending on bootstrapping
109109}
110110
111- // Configure Dokka for subprojects
111+ // Configure Dokka for dynamodb-mapper
112112dependencies {
113- subprojects.forEach {
114- it.plugins.apply (" dokka-convention" ) // Apply the Dokka conventions plugin to the subproject
115- dokka(project(it.path)) // Aggregate the subproject's generated documentation
116- }
113+ dokka(project(" dynamodb-mapper" ))
117114}
Original file line number Diff line number Diff line change 1+ plugins {
2+ `dokka- convention`
3+ }
4+
5+ dependencies {
6+ dokka(project(" dynamodb-mapper" ))
7+ dokka(project(" dynamodb-mapper-annotations" ))
8+ }
Original file line number Diff line number Diff line change 66description = " DynamoDbMapper annotations"
77extra[" displayName" ] = " AWS :: SDK :: Kotlin :: HLL :: DynamoDbMapper :: Annotations"
88extra[" moduleName" ] = " aws.sdk.kotlin.hll.dynamodbmapper.annotations"
9+
10+ plugins {
11+ `dokka- convention`
12+ }
13+
14+ dokka {
15+ modulePath = " dynamodb-mapper-annotations"
16+ }
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ buildscript {
2626
2727plugins {
2828 alias(libs.plugins.ksp)
29+ `dokka- convention`
2930}
3031
3132kotlin {
@@ -184,3 +185,7 @@ tasks.withType<Test> {
184185 startDdbLocal.stop()
185186 }
186187}
188+
189+ dokka {
190+ modulePath = " dynamodb-mapper"
191+ }
You can’t perform that action at this time.
0 commit comments