I'm looking for the CAS version compatible with Spring Security 3.0.x and Spring 3.0.x. Currently in the maven repository there's only 3.1.0 and 3.1.1 versions of spring-security-cas. If I try any of those, I get the following error:
when instantiating the classCode:java.lang.NoClassDefFoundError: org/springframework/security/core/authority/mapping/GrantedAuthoritiesMapper
In fact, GrantedAuthoritiesMapper only exists on the 3.1.x versions of Spring, which are not used by the project I'm working with.Code:org.springframework.security.cas.authentication.CasAuthenticationProvider
So, why previous versions of spring-security-cas (if they really existed) were removed from the maven repository? And how can I get them?


Reply With Quote
