forked from smithy-lang/smithy-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
31 lines (27 loc) · 949 Bytes
/
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
/*
* 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()
}
// configure default plugin versions
plugins {
val kotlinVersion: String by settings
val dokkaVersion: String by settings
val kotlinxBenchmarkVersion: String by settings
val smithyGradleVersion: String by settings
id("org.jetbrains.dokka") version dokkaVersion
id("org.jetbrains.kotlin.jvm") version kotlinVersion
id("org.jetbrains.kotlinx.benchmark") version kotlinxBenchmarkVersion
id("software.amazon.smithy") version smithyGradleVersion
}
}
rootProject.name = "smithy-swift"
include("smithy-swift-codegen")
include("smithy-swift-codegen-test")
include("smithy-swift-codegen-test-utils")