-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
132 lines (114 loc) · 3.28 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
132 lines (114 loc) · 3.28 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
//This ensures composite builds also have the repositories configured.
pluginManagement {
includeBuild("gradle-plugin")
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "smithy-java"
// BOM (Bill of Materials)
include(":bom")
// AI
include(":smithy-ai-traits")
// Common modules
include(":context")
include(":core")
include(":dynamic-schemas")
include(":io")
include(":logging")
include(":version-spi")
// CLI
include(":cli")
// Common components
include(":auth-api")
include(":endpoints")
include(":framework-errors")
include(":http:http-api")
include(":http:http-binding")
include(":http:http-client")
include(":retries-api")
include(":retries")
// Codecs
include(":codecs:codec-commons")
include(":codecs:cbor-codec")
include(":codecs:json-codec")
include(":codecs:xml-codec")
// Client
include(":client:client-core")
include(":client:client-auth-api")
include(":client:client-http")
include(":client:client-http-binding")
include(":client:client-rpcv2")
include(":client:client-rpcv2-cbor")
include(":client:client-rpcv2-json")
include(":client:dynamic-client")
include(":client:client-mock-plugin")
include(":client:client-waiters")
include(":client:client-rulesengine")
include(":client:client-metrics-otel")
// Server
include(":server:server-api")
include(":server:server-core")
include(":server:server-netty")
include(":server:server-rpcv2")
include(":server:server-rpcv2-cbor")
include(":server:server-rpcv2-json")
include(":server:server-proxy")
// Codegen
include(":codegen:codegen-core")
include(":codegen:codegen-plugin")
// Utilities
include(":jmespath")
include(":rulesengine")
include(":protocol-test-harness")
include(":fuzz-test-harness")
// AWS specific
include(":aws:aws-event-streams")
include(":aws:aws-sigv4")
include(":aws:aws-sigv4-s3express")
include(":aws:client:aws-client-awsjson")
include(":aws:client:aws-client-core")
include(":aws:client:aws-client-http")
include(":aws:client:aws-client-restjson")
include(":aws:client:aws-client-restxml")
include(":aws:client:aws-client-s3")
include(":aws:client:aws-client-awsquery")
include(":aws:client:aws-client-rulesengine")
include(":aws:integrations:aws-lambda-endpoint")
include(":aws:server:aws-server-restjson")
include(":aws:aws-auth-api")
include(":aws:aws-credential-chain")
include(":aws:aws-config")
include(":aws:aws-credentials-imds")
include(":aws:aws-credentials-sts")
// AWS service bundling code
include(":aws:aws-service-bundle")
include(":aws:aws-service-bundler")
include(":aws:aws-mcp-types")
// AWS SDK V2 shims
include(":aws:sdkv2:aws-sdkv2-retries")
include(":aws:sdkv2:aws-sdkv2-shapes")
include(":aws:sdkv2:aws-sdkv2-auth")
// Examples
include(":examples")
include(":examples:basic-server")
include(":examples:transcribestreaming-client")
include(":examples:end-to-end")
include(":examples:event-streaming-client")
include(":examples:lambda")
include(":examples:restjson-client")
include(":examples:standalone-types")
include(":examples:mcp-server")
include(":examples:mcp-traits-example")
//MCP
include(":mcp")
include(":mcp:mcp-schemas")
include(":mcp:mcp-server")
include(":model-bundle")
include(":model-bundle:model-bundle-api")
// Benchmarks (not published)
include(":benchmarks")
include(":benchmarks:serde-benchmarks")
include(":benchmarks:e2e-benchmarks")