-
Notifications
You must be signed in to change notification settings - Fork 218
/
settings.gradle.kts
45 lines (42 loc) · 1.25 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
plugins {
val smithyGradleVersion : String by settings
id("software.amazon.smithy.gradle.smithy-jar") version smithyGradleVersion
}
}
rootProject.name = "smithy"
include(":smithy-aws-iam-traits")
include(":smithy-aws-traits")
include(":smithy-aws-apigateway-traits")
include(":smithy-aws-apigateway-openapi")
include(":smithy-aws-protocol-tests")
include(":smithy-cli")
include(":smithy-codegen-core")
include(":smithy-build")
include(":smithy-model")
include(":smithy-diff")
include(":smithy-linters")
include(":smithy-mqtt-traits")
include(":smithy-jsonschema")
include(":smithy-openapi")
include(":smithy-openapi-traits")
include(":smithy-utils")
include(":smithy-protocol-test-traits")
include(":smithy-jmespath")
include(":smithy-waiters")
include(":smithy-aws-cloudformation-traits")
include(":smithy-aws-cloudformation")
include(":smithy-validation-model")
include(":smithy-rules-engine")
include(":smithy-smoke-test-traits")
include(":smithy-syntax")
include(":smithy-aws-endpoints")
include(":smithy-aws-smoke-test-model")
include(":smithy-protocol-traits")
include(":smithy-protocol-tests")
include(":smithy-trait-codegen")