forked from spring-projects/spring-security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
80 lines (63 loc) · 1.82 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
rootProject.name = 'spring-security'
rootProject.children.each {project ->
//assert project.projectDir.isDirectory()
//assert project.buildFile.isFile()
}
def String[] modules = [
'core',
'data',
'remoting',
'web',
'ldap',
'acl',
'config',
'cas',
'openid',
'taglibs',
'aspects',
'crypto',
'messaging',
'test'
]
include modules
modules.each {name ->
def p = findProject(":${name}")
p.name = "spring-security-${name}"
p.buildFileName = "${name}.gradle"
}
def String[] itest = [
'web',
'context'
]
include itest
itest.each { name ->
def p = findProject(":${name}")
p.name = "itest-${name}"
p.buildFileName = "itest-${name}.gradle"
p.projectDir = new File(settingsDir, "itest/${name}");
}
include 'docs', 'docs:manual', 'docs:guides'
def docs = findProject(':docs')
docs.buildFileName = 'docs.gradle'
include 'bom'
findProject(':bom').name = 'spring-security-bom'
includeSamples("samples" + File.separator + "xml")
includeSamples("samples" + File.separator + "javaconfig")
includeSamples("samples" + File.separator + "boot")
void includeSamples(String samplesDir) {
FileTree tree = fileTree(samplesDir) {
include '**' + File.separator + '*.gradle'
}
tree.each {File file ->
String projectDir = file.path.substring(file.path.indexOf(samplesDir), file.path.lastIndexOf(File.separator))
String projectPath = projectDir.substring(projectDir.lastIndexOf(File.separator) + 1)
String projectNamePrefix = samplesDir.substring(samplesDir.lastIndexOf(File.separator) + 1).toLowerCase();
include projectPath
def project = findProject(":${projectPath}")
project.name = "spring-security-samples-${projectNamePrefix}-${project.name}"
project.projectDir = new File(settingsDir, projectDir)
if (!project.buildFile.exists()) {
project.buildFileName = file.path.substring(file.path.lastIndexOf(File.separator) + 1)
}
}
}