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
./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/

View File

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