-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
32 lines (25 loc) · 1.37 KB
/
settings.gradle
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
rootProject.name = 'spring-boot-tutorial'
include 'spring-boot-data'
include 'spring-boot-data:spring-boot-data-jpa-multiple'
findProject(':spring-boot-data:spring-boot-data-jpa-multiple')?.name = 'spring-boot-data-jpa-multiple'
include 'spring-boot-mvc'
include 'spring-boot-mvc:spring-boot-mvc-controller'
findProject(':spring-boot-mvc:spring-boot-mvc-controller')?.name = 'spring-boot-mvc-controller'
include 'spring-boot-security'
include 'spring-boot-security:spring-boot-security-javaconfig'
findProject(':spring-boot-security:spring-boot-security-javaconfig')?.name = 'spring-boot-security-javaconfig'
include 'spring-boot-security:spring-boot-security-xmlconfig'
findProject(':spring-boot-security:spring-boot-security-xmlconfig')?.name = 'spring-boot-security-xmlconfig'
include 'spring-boot-themes'
include 'spring-boot-themes:spring-boot-themes-thymeleaf-bootstrap'
findProject(':spring-boot-themes:spring-boot-themes-thymeleaf-bootstrap')?.name = 'spring-boot-themes-thymeleaf-bootstrap'
include 'framework'
include 'framework:sahir-framework'
findProject(':framework:sahir-framework')?.name = 'sahir-framework'
//we check if the modules have gradle configuration files
rootProject.children.each { project ->
project.buildFileName = "${project.name}.gradle"
assert project.projectDir.isDirectory()
assert project.buildFile.exists()
assert project.buildFile.isFile()
}