-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle.kts
39 lines (35 loc) · 927 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
32
33
34
35
36
37
38
39
/*
* Copyright 2023 estiven. Use of this source code is governed by the Apache 2.0 license.
*/
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
gradlePluginPortal()
}
versionCatalogs {
create("aws") {
from(files("gradle/aws.versions.toml"))
}
}
}
rootProject.name = "aws-kmp"
includeBuild("build-logic")
include(":aws-common")
include(":aws-s3")
include(":aws-dynamo")
include(":sample:androidapp")
include(":sample:desktopApp")
include(":sample:shared")
include(":sample:webApp")
include(":sample:wearapp")