2020-10-28 23:00:49 +08:00
|
|
|
/*
|
|
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
|
|
*/
|
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://plugins.gradle.org/m2/")
|
|
|
|
google()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rootProject.name = "software.amazon.smithy.rust.codegen.smithy-rs"
|
|
|
|
enableFeaturePreview("GRADLE_METADATA")
|
|
|
|
|
|
|
|
include(":codegen")
|
|
|
|
include(":codegen-test")
|
2020-11-26 07:49:38 +08:00
|
|
|
include(":rust-runtime")
|
2021-01-20 04:23:07 +08:00
|
|
|
include(":aws:sdk-codegen")
|
2021-04-02 01:16:13 +08:00
|
|
|
include(":aws:sdk-codegen-test")
|
2021-01-20 04:23:07 +08:00
|
|
|
include(":aws:sdk")
|
2021-05-29 00:55:07 +08:00
|
|
|
include(":aws:rust-runtime")
|