-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
26 lines (22 loc) · 947 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
/*
* Detailed information about configuring a multi-project build in Gradle can be found
* in the user manual at https://docs.gradle.org/7.2/userguide/multi_project_builds.html
*/
rootProject.name = "kotlin-playground"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
// Default repository setup that individual projects can override if needed
@Suppress("UnstableApiUsage")
repositories {
mavenCentral()
}
}
// We might have to ensure we do not have projects that are named the same, i.e. :something:application and :otherthing:application
// as Gradle will fail. See https://github.com/gradle/gradle/issues/847 for more information.
include("building-blocks")
include("web-app")
include("clean-app:auction:auction-application")
include("clean-app:auction:auction-domain")
include("clean-app:auction:auction-infrastructure")
include("vertical-app:ordering")
include("desktop-app")