File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,15 @@ plugins {
10
10
11
11
description = " Smithy protocol test suite"
12
12
13
- val smithyVersion: String by project
13
+ buildscript {
14
+ val smithyVersion: String by project
15
+ dependencies {
16
+ classpath(" software.amazon.smithy:smithy-cli:$smithyVersion " )
17
+ }
18
+ }
14
19
20
+
21
+ val smithyVersion: String by project
15
22
dependencies {
16
23
implementation(" software.amazon.smithy:smithy-aws-protocol-tests:$smithyVersion " )
17
24
implementation(project(" :codegen:smithy-aws-kotlin-codegen" ))
@@ -95,4 +102,4 @@ tasks.register("testAllProtocols") {
95
102
group = " Verification"
96
103
val allTests = tasks.withType<ProtocolTestTask >()
97
104
dependsOn(allTests)
98
- }
105
+ }
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ buildscript {
22
22
val smithyVersion: String by project
23
23
dependencies {
24
24
classpath(" software.amazon.smithy:smithy-aws-traits:$smithyVersion " )
25
+ classpath(" software.amazon.smithy:smithy-cli:$smithyVersion " )
25
26
}
26
27
}
27
28
You can’t perform that action at this time.
0 commit comments