-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
34 lines (30 loc) · 1.03 KB
/
settings.gradle.kts
File metadata and controls
34 lines (30 loc) · 1.03 KB
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
rootProject.name = "personal-stack"
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
mavenCentral()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://repo.spring.io/milestone")
}
}
include(":libs:kotlin-common")
// Service Dockerfiles only copy `libs/` + `services/` build scripts into the
// build context, so `platform/tooling/` is absent inside the image and Gradle
// refuses to configure a project whose directory does not exist. Include it
// only when the checkout is full (local dev, CI runs), not inside minimal
// service build contexts. Flip with PLATFORM_TOOLING=1 if you deliberately
// want to force inclusion.
if (file("platform/tooling").isDirectory || System.getenv("PLATFORM_TOOLING") == "1") {
include(":platform:tooling")
}
include(":services:auth-api")
include(":services:assistant-api")
include(":services:system-tests")