We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
modulePath
1 parent 44ab1e7 commit af3c184Copy full SHA for af3c184
codegen/aws-sdk-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/GradleGenerator.kt
@@ -77,6 +77,12 @@ class GradleGenerator : KotlinIntegration {
77
}
78
79
80
+ writer.write("")
81
+ writer.withBlock("dokka {", "}") {
82
+ val serviceModuleName = ctx.settings.pkg.name.split(".").last()
83
+ write("modulePath = #S", serviceModuleName)
84
+ }
85
+
86
val contents = writer.toString()
87
delegator.fileManifest.writeFile("build.gradle.kts", contents)
88
0 commit comments