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.
1 parent 9c3967c commit 92e091eCopy full SHA for 92e091e
codegen/protocol-tests/build.gradle.kts
@@ -73,6 +73,14 @@ dependencies {
73
codegen(libs.smithy.aws.protocol.tests)
74
}
75
76
+tasks.generateSmithyProjections {
77
+ // ensure the generated clients use the same version of the runtime as the aws aws-runtime
78
+ val smithyKotlinRuntimeVersion = libs.versions.smithy.kotlin.runtime.version.get()
79
+ doFirst {
80
+ System.setProperty("smithy.kotlin.codegen.clientRuntimeVersion", smithyKotlinRuntimeVersion)
81
+ }
82
+}
83
+
84
abstract class ProtocolTestTask @Inject constructor(private val project: Project) : DefaultTask() {
85
/**
86
* The projection
0 commit comments