Moved cas server and cas sample into common parent folder (samples/cas)

This commit is contained in:
Rob Winch 2011-05-15 21:21:45 -05:00
parent 1b8eee6f07
commit 11dc3363cc
28 changed files with 50 additions and 49 deletions

View File

@ -1,8 +1,8 @@
To run a CAS server and client application, just execute the command To run a CAS server and client application, just execute the command
./gradlew cas ../../../gradlew cas
from the project root directory. You should then be able to point your browser at from samples/cas/sample. You should then be able to point your browser at
https://localhost:8443/cas-sample/ https://localhost:8443/cas-sample/

View File

@ -19,8 +19,8 @@ def String[] samples = [
'gae', 'gae',
'dms', 'dms',
'preauth', 'preauth',
'casserver', 'cas/server',
'cas', 'cas/sample',
'ldap', 'ldap',
'jaas' 'jaas'
] ]
@ -42,8 +42,9 @@ include samples
samples.each {name -> samples.each {name ->
p = findProject(":${name}") p = findProject(":${name}")
p.name = "spring-security-samples-${name}" def fullName = name.replaceAll('/','')
p.buildFileName = "${name}.gradle" p.name = "spring-security-samples-${fullName}"
p.buildFileName = "${fullName}.gradle"
p.projectDir = new File(settingsDir, "samples/${name}"); p.projectDir = new File(settingsDir, "samples/${name}");
} }