-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
27 lines (24 loc) · 1017 Bytes
/
settings.gradle.kts
File metadata and controls
27 lines (24 loc) · 1017 Bytes
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
plugins {
id("io.cloudflight.autoconfigure-settings") version "0.9.1"
}
rootProject.name = "springboot-testresources"
include("springboot-testresources-azurite")
include("springboot-testresources-client")
include("springboot-testresources-minio")
include("springboot-testresources-jdbc")
include("springboot-testresources-jdbc:springboot-testresources-jdbc-mariadb")
include("springboot-testresources-jdbc:springboot-testresources-jdbc-mssql")
include("springboot-testresources-jdbc:springboot-testresources-jdbc-postgres")
include("springboot-testresources-rabbitmq")
include("springboot-testresources-redis")
include("springboot-testresources-mailhog")
include("springboot-testresources-elasticsearch")
include("testprojects:jdbc:mariadb")
include("testprojects:jdbc:mssql")
include("testprojects:jdbc:postgres")
include("testprojects:azurite")
include("testprojects:minio")
include("testprojects:rabbitmq")
include("testprojects:redis")
include("testprojects:mailhog")
include("testprojects:elasticsearch")