-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
settings.gradle.kts
20 lines (19 loc) · 1017 Bytes
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
rootProject.name = "pg-index-health-build"
include("pg-index-health-model")
include("pg-index-health")
include("pg-index-health-jdbc-connection")
include("pg-index-health-generator")
include("pg-index-health-testing")
include("spring-boot-integration:pg-index-health-test-starter")
findProject(":spring-boot-integration:pg-index-health-test-starter")?.name = "pg-index-health-test-starter"
include("spring-boot-integration:h2-demo-app")
findProject(":spring-boot-integration:h2-demo-app")?.name = "h2-demo-app"
include("spring-boot-integration:console-demo-app")
findProject(":spring-boot-integration:console-demo-app")?.name = "console-demo-app"
include("spring-boot-integration:postgres-demo-app")
findProject(":spring-boot-integration:postgres-demo-app")?.name = "postgres-demo-app"
include("spring-boot-integration:kotlin-demo-app")
findProject(":spring-boot-integration:kotlin-demo-app")?.name = "kotlin-demo-app"
include("pg-index-health-bom")
include("pg-index-health-logger")
include("pg-index-health-core")