-
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
feat: provide client config property for region provider #1210
base: main
Are you sure you want to change the base?
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@@ -134,6 +135,7 @@ data class KotlinDependency( | |||
// External third-party dependencies | |||
val KOTLIN_STDLIB = KotlinDependency(GradleConfiguration.Implementation, "kotlin", "org.jetbrains.kotlin", "kotlin-stdlib", KOTLIN_COMPILER_VERSION) | |||
val KOTLIN_TEST = KotlinDependency(GradleConfiguration.TestImplementation, "kotlin.test", "org.jetbrains.kotlin", "kotlin-test", KOTLIN_COMPILER_VERSION) | |||
val KOTLINX_COROUTINES = KotlinDependency(GradleConfiguration.Implementation, "kotlinx.coroutines", "org.jetbrains.kotlinx", "kotlinx-coroutines-core", KOTLINX_COROUTINES_VERSION) |
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.
Sorry, I think I gave you the wrong recommendation earlier. This could be done without hardcoding the kotlinx.coroutines version. See @0marperez PR where he does the exact same thing here: https://github.com/smithy-lang/smithy-kotlin/pull/1191/files#diff-cff225fba9b05cc2ba4b10fb157b6a2365da1a2c676cec0d06379bf14a0991ccR416
We can sync up if you have more questions
Affected ArtifactsChanged in size
|
Issue #
#1478
Description of changes
Add Kotlin Coroutine dependency that will be used in awslabs/aws-sdk-kotlin#1488
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.