forked from spring-projects/spring-security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
93 lines (80 loc) · 1.78 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
81
82
83
84
85
86
87
88
89
90
91
92
93
def String[] modules = [
'core',
'remoting',
'web',
'ldap',
'acl',
'config',
'cas',
'openid',
'taglibs',
'aspects',
'crypto'
]
def String[] samples = [
'tutorial-xml',
'contacts-xml',
'openid-xml',
'aspectj-xml',
'gae-xml',
'dms-xml',
'preauth-xml',
'cas/server',
'cas/sample-xml',
'ldap-xml',
'jaas-xml',
'servletapi-xml',
'concurrency-jc',
'form-jc',
'helloworld-jc',
'hellomvc-jc',
'hellojs-jc',
'insecure',
'insecuremvc',
'inmemory-jc',
'jdbc-jc',
'ldap-jc',
'messages-jc',
'openid-jc',
'preauth-jc',
'rememberme-jc',
'x509-jc'
]
def String[] itest = [
'web',
'context'
]
include modules
modules.each {name ->
def p = findProject(":${name}")
p.name = "spring-security-${name}"
p.buildFileName = "${name}.gradle"
}
include samples
samples.each {name ->
def p = findProject(":${name}")
def fullName = name.replaceAll('/','')
p.name = "spring-security-samples-${fullName}"
p.projectDir = new File(settingsDir, "samples/${name}");
if(!p.buildFile.exists()) {
def buildFile = fullName.replaceFirst("-xml","")
p.buildFileName = "${buildFile}.gradle"
}
}
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'
rootProject.name = 'spring-security'
rootProject.children.each {project ->
//assert project.projectDir.isDirectory()
//assert project.buildFile.isFile()
}
include 'bom'
findProject(':bom').name = 'spring-security-bom'