Hi,

Taking a look at the tasks.gradle script: 
https://github.com/apereo/cas-overlay-template/blob/6.1/gradle/tasks.gradle#L29


you can see the working mechaism of *copyCasConfiguration*:

...

task copyCasConfiguration(type: Copy, group: "build", description: 
"Copy the CAS configuration from this project to /etc/cas/config") {
    from "etc/cas/config"
    into new File('/etc/cas/config').absolutePath
    doFirst {
        new File('/etc/cas/config').mkdirs()
    }
}
...

Seems to me the main problem is that, copyCasConfiguration command *does 
not copy /etc/cas/services*, it just copy */etc/cas/config* as show in the 
above code.

You will need to find other ways to copy the services... Or you can add 
your copy task as well so it can copy services for you :)

Cheers!
- Andy


-- 
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
--- 
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/d3b400c4-69b8-4979-81ca-ba609a3a1ce1%40apereo.org.

Reply via email to