Skip to content

Commit ba76843

Browse files
committed
Revert dynamodb-mapper changes
1 parent c321367 commit ba76843

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

hll/build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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
112112
dependencies {
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
}

hll/dynamodb-mapper/build.gradle.kts

Lines changed: 0 additions & 8 deletions
This file was deleted.

hll/dynamodb-mapper/dynamodb-mapper-annotations/build.gradle.kts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ description = "DynamoDbMapper annotations"
77
extra["displayName"] = "AWS :: SDK :: Kotlin :: HLL :: DynamoDbMapper :: Annotations"
88
extra["moduleName"] = "aws.sdk.kotlin.hll.dynamodbmapper.annotations"
99

10-
plugins {
11-
`dokka-convention`
12-
}
13-
1410
dokka {
1511
modulePath = "dynamodb-mapper-annotations"
1612
}

0 commit comments

Comments
 (0)