2020-10-28 23:00:49 +08:00
|
|
|
/*
|
|
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2022-05-09 22:50:46 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2020-10-28 23:00:49 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
rootProject.name = "software.amazon.smithy.rust.codegen.smithy-rs"
|
|
|
|
|
2022-09-08 00:31:46 +08:00
|
|
|
include(":codegen-core")
|
|
|
|
include(":codegen-client")
|
|
|
|
include(":codegen-client-test")
|
2021-10-06 01:05:00 +08:00
|
|
|
include(":codegen-server")
|
2022-05-18 22:26:29 +08:00
|
|
|
include(":codegen-server:python")
|
2021-10-06 01:05:00 +08:00
|
|
|
include(":codegen-server-test")
|
2022-05-18 22:26:29 +08:00
|
|
|
include(":codegen-server-test:python")
|
2020-11-26 07:49:38 +08:00
|
|
|
include(":rust-runtime")
|
2021-05-29 00:55:07 +08:00
|
|
|
include(":aws:rust-runtime")
|
2023-03-28 07:15:36 +08:00
|
|
|
include(":aws:sdk")
|
|
|
|
include(":aws:sdk-adhoc-test")
|
|
|
|
include(":aws:sdk-codegen")
|
|
|
|
include(":aws:sra-test")
|
2022-10-18 05:03:42 +08:00
|
|
|
|
2022-11-17 05:58:04 +08:00
|
|
|
pluginManagement {
|
|
|
|
val smithyGradlePluginVersion: String by settings
|
|
|
|
plugins {
|
|
|
|
id("software.amazon.smithy") version smithyGradlePluginVersion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-18 05:03:42 +08:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
}
|