[cas-user] gradle versions of dependency documentation?

2021-04-13 Thread Baron Fujimoto
I'm working on upgrading our old cas 5.x to a current 6.3 version. For our old cas, we used maven and pom.xml for the war overlay and dependencies. Apparently that's been deprecated in favor of gradle, but it looks like the documentation still uses XML. For example:

Re: [cas-user] gradle versions of dependency documentation?

2021-04-13 Thread Mike Osterman
Hi Baron, I too am working on 5.x to 6.3.x and have been getting help from Unicon. While I'm not sure if "compile" works, here's what I picked up from working with them. Here are our dependencies: implementation "org.apereo.cas:cas-server-webapp-init:${casServerVersion}" implementation "org.aper

Re: [cas-user] gradle versions of dependency documentation?

2021-04-13 Thread Andy Ng
Hi Baron, Agreed with Mike, as for compile v.s. implementation, for the use case of CAS build.gradle, you should use *implementation*. See: https://stackoverflow.com/questions/44493378/whats-the-difference-between-implementation-and-compile-in-gradle Cheers! - Andy On Wednesday, 14 April 202

Re: [cas-user] gradle versions of dependency documentation?

2021-04-14 Thread Baron Fujimoto
Mahalo for the pointers! I guess I am conditioned to seek answers in the wiki documentation first. I'll have to train myself to also consult the README.md as well (though there still seems to be a gap between the two). On Tue, Apr 13, 2021 at 8:42 PM Andy Ng wrote: > Hi Baron, > > Agreed with Mi