You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
687 B
39 lines
687 B
String[] modules = [ |
|
'core', |
|
'web', |
|
'ldap', |
|
'acl', |
|
'config', |
|
'cas', |
|
'openid', |
|
'taglibs' |
|
] |
|
|
|
String[] samples = [ |
|
'tutorial', |
|
'contacts', |
|
'openid' |
|
] |
|
|
|
include modules |
|
|
|
modules.each {name -> |
|
p = findProject(":${name}") |
|
p.name = "spring-security-${name}" |
|
p.buildFileName = "${name}.gradle" |
|
} |
|
|
|
include samples |
|
|
|
samples.each {name -> |
|
p = findProject(":${name}") |
|
p.name = "spring-security-samples-${name}" |
|
p.buildFileName = "${name}.gradle" |
|
p.projectDir = new File(settingsDir, "samples/${name}"); |
|
} |
|
|
|
|
|
rootProject.children.each {project -> |
|
assert project.buildFile.isFile() |
|
assert project.projectDir.isDirectory() |
|
} |