Moved cas server and cas sample into common parent folder (samples/cas)
This commit is contained in:
parent
1b8eee6f07
commit
11dc3363cc
|
@ -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/
|
||||
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
xmlns:context="http://www.springframework.org/schema/context"
|
||||
xmlns:util="http://www.springframework.org/schema/util"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd
|
||||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
|
||||
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
|
||||
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
|
||||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
|
||||
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
|
||||
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
|
||||
|
||||
<http entry-point-ref="casEntryPoint" use-expressions="true">
|
||||
<intercept-url pattern="/" access="permitAll"/>
|
|
@ -5,7 +5,7 @@
|
|||
or if you've authenticated this session.</p>
|
||||
|
||||
<%if (request.isUserInRole("ROLE_SUPERVISOR")) { %>
|
||||
<p>You are a supervisor! You can therefore see the <a href="extreme/index.jsp">extremely secure page</a>.</p>
|
||||
<p>You are a supervisor! You can therefore see the <a href="extreme/index.jsp">extremely secure page</a>.</p>
|
||||
<% } %>
|
||||
|
||||
<p><a href="../">Home</a>
|
|
@ -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}");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue