-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettings.gradle.kts
96 lines (81 loc) · 2.35 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
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
rootProject.name = "smithy-java"
// Common modules
include(":context")
include(":core")
include(":dynamic-schemas")
include(":io")
include(":logging")
// CLI
include(":cli")
// Common components
include(":auth-api")
include(":framework-errors")
include(":http:http-api")
include(":http:http-binding")
include(":retries-api")
include(":tracing-api")
// Codecs
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-cbor")
include(":client:dynamic-client")
include(":client:client-mock-plugin")
include(":client:client-waiters")
// Server
include(":server:server-api")
include(":server:server-core")
include(":server:server-netty")
include(":server:server-rpcv2-cbor")
include(":server:server-proxy")
// Codegen
include(":codegen:codegen-core")
include(":codegen:integrations:waiters-codegen")
include(":codegen:plugins")
include(":codegen:plugins:client-codegen")
include(":codegen:plugins:server-codegen")
include(":codegen:plugins:types-codegen")
// Utilities
include(":jmespath")
include(":protocol-test-harness")
// AWS specific
include(":aws:aws-event-streams")
include(":aws:aws-sigv4")
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:integrations:aws-lambda-endpoint")
include(":aws:server:aws-server-restjson")
include(":aws:aws-auth-api")
// AWS service bundling code
include(":aws:aws-service-bundle")
include(":aws:aws-service-bundler")
include(":aws:aws-mcp-provider")
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:dynamodb-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")
//MCP
include(":mcp")
include(":mcp:mcp-schemas")
include(":mcp:mcp-server")
include(":model-bundler:bundle-api")
include(":model-bundler:bundle-cli")