forked from smithy-lang/smithy-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
30 lines (28 loc) · 1.12 KB
/
settings.gradle.kts
File metadata and controls
30 lines (28 loc) · 1.12 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
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
rootProject.name = "smithy-rs"
include(":codegen-core")
include(":codegen-client")
include(":codegen-client-test")
include(":codegen-server")
include(":codegen-serde")
include(":codegen-server:codegen-server-python")
include(":codegen-server:codegen-server-typescript")
include(":codegen-server-test")
// NOTE these have to be named differently or otherwise have different GAV coordinates
// due to https://github.com/gradle/gradle/issues/847
include(":codegen-server-test:codegen-server-test-python")
include(":codegen-server-test:codegen-server-test-typescript")
include(":codegen-traits")
include(":rust-runtime")
include(":aws:rust-runtime")
// NOTE: we rename the aws/rust-runtime project so that it ends up with different GAV
// coordinates otherwise it will conflict with the generic runtime which has coordinates
// `software.amazon.smithy.rust:rust-runtime`.
project(":aws:rust-runtime").name = "aws-rust-runtime"
include(":aws:sdk")
include(":aws:sdk-adhoc-test")
include(":aws:codegen-aws-sdk")
include(":fuzzgen")