File tree Expand file tree Collapse file tree 3 files changed +5
-14
lines changed
dynamodb-mapper-annotations Expand file tree Collapse file tree 3 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,10 @@ apiValidation {
108108 ).filter { it in availableSubprojects } // Some projects may not be in the build depending on bootstrapping
109109}
110110
111- // Configure Dokka for dynamodb-mapper
111+ // Configure Dokka for subprojects
112112dependencies {
113- dokka(rootProject.project(" :hll:dynamodb-mapper" ))
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+ }
114117}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,10 +7,6 @@ description = "DynamoDbMapper annotations"
77extra[" displayName" ] = " AWS :: SDK :: Kotlin :: HLL :: DynamoDbMapper :: Annotations"
88extra[" moduleName" ] = " aws.sdk.kotlin.hll.dynamodbmapper.annotations"
99
10- plugins {
11- `dokka- convention`
12- }
13-
1410dokka {
1511 modulePath = " dynamodb-mapper-annotations"
1612}
You can’t perform that action at this time.
0 commit comments