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.
2 parents ea8e882 + 0d2c65b commit 5aa5a4dCopy full SHA for 5aa5a4d
gradle/sdk-plugins/src/main/kotlin/aws/sdk/kotlin/gradle/codegen/tasks/SmithyTasks.kt
@@ -56,6 +56,10 @@ internal fun Project.registerCodegenTasks() {
56
classpath = codegenConfig
57
smithyBuildConfigs = files(smithyBuildConfig)
58
59
+ // use the actual project build directory rather than the erroneous default smithy uses which defaults is
60
+ // correct in the default case but doesn't respect the buildDir setting being changed
61
+ outputDirectory = buildDir.resolve("smithyprojections/${project.name}")
62
+
63
inputs.file(smithyBuildConfig)
64
65
val extension = project.codegenExtension
0 commit comments