-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: refactor build to use custom smithy build plugin #1020
Conversation
|
||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> { | ||
dependsOn(generateSdk) | ||
dependsOn(tasks.generateSmithyProjections) | ||
// generated code has warnings unfortunately |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: can link this issue as a FIXME: awslabs/aws-sdk-kotlin#1169 (just converted now from the internal issue)
@@ -1,5 +1,6 @@ | |||
{ | |||
"version": "1.0", | |||
"sources": ["model"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: why doesn't this need to reference a .smithy
file like the other smithy-build.json files?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It can be a directory or file. https://smithy.io/2.0/guides/building-models/build-config.html
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
Issue #
Description of changes
Refactors the build to use our new codegen plugin based on the newer smithy gradle base plugin.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.