-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
71 lines (62 loc) · 1.78 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
rootProject.name = "smithy-java"
// Common modules
include(":logging")
include(":context")
include(":io")
include(":core")
include(":dynamic-schemas")
// Common components
include(":auth-api")
include(":retries-api")
include(":tracing-api")
include(":http-api")
include(":http-binding")
include(":framework-errors")
// Codecs
include(":codecs:json-codec")
include(":codecs:cbor-codec")
include(":codecs:xml-codec")
// Client
include(":client:client-core")
include(":client:client-http")
include(":client:client-http-binding")
include(":client:client-rpcv2-cbor")
include(":client:dynamic-client")
include(":client:mock-client-plugin")
include(":client:waiters")
// Server
include(":server:server-api")
include(":server:server-core")
include(":server:server-netty")
include(":server:server-rpcv2-cbor")
// Codegen
include(":codegen:core")
include(":codegen:plugins")
include(":codegen:plugins:client")
include(":codegen:plugins:server")
include(":codegen:plugins:types")
include(":codegen:integrations:waiters-codegen")
// Utilities
include(":protocol-test-harness")
include(":jmespath")
// AWS specific
include(":aws:event-streams")
include(":aws:sigv4")
include(":aws:client:aws-client-core")
include(":aws:client:aws-client-awsjson")
include(":aws:client:aws-client-restjson")
include(":aws:client:aws-client-restxml")
include(":aws:client:aws-client-http")
include(":aws:client:aws-sdkv2-retries")
include(":aws:client:aws-sdkv2-shapes")
include(":aws:server:aws-server-restjson")
include(":aws:integrations:lambda-endpoint")
// Examples
include(":examples")
include(":examples:basic-server")
include(":examples:dynamodb-client")
include(":examples:event-streaming-client")
include(":examples:restjson-client")
include(":examples:lambda")
include(":examples:standalone-types")
include(":examples:end-to-end")