In pre 4 releases, when adding restlet support I had simply added:

<dependency>
                <groupId>org.jasig.cas</groupId>
                <artifactId>cas-server-integration-restlet</artifactId>
                <version>${cas.version}</version>
                <type>jar</type>
</dependency>

>From mvn dependency:tree:
[INFO] +- org.jasig.cas:cas-server-integration-restlet:jar:4.0.0-RC1:compile
[INFO] |  +- org.restlet.jee:org.restlet:jar:2.1.0:compile
[INFO] |  +- org.restlet.jee:org.restlet.ext.spring:jar:2.1.0:runtime
[INFO] |  |  +- cglib:cglib-nodep:jar:2.2:runtime
[INFO] |  |  +- commons-logging:commons-logging:jar:1.1.1:runtime
[INFO] |  |  \- org.springframework:spring-asm:jar:3.0.1.RELEASE:runtime

spring-asm:jar:3.0.1.RELEASE is in conflict with 3.2.2.RELEASE from cas.

Current work around:
<dependency>
                <groupId>org.jasig.cas</groupId>
                <artifactId>cas-server-integration-restlet</artifactId>
                <version>${cas.version}</version>
                <type>jar</type>
                <exclusions>
                        <exclusion>
                                <groupId>org.springframework</groupId>
                                <artifactId>spring-web</artifactId>
                        </exclusion>
                        <exclusion>
                                <groupId>org.springframework</groupId>
                                <artifactId>spring-asm</artifactId>
                        </exclusion>
                </exclusions>
</dependency>


-Steve

On Mon, Jul 8, 2013 at 3:25 PM, Marvin S. Addison
<[email protected]> wrote:
> CAS 4.0.0 release candidate #1 is available for testing and evaluation. We
> heartily encourage early adopters to grab this release from Maven Central,
> integrate into your environment, and provide feedback.
>
> Notable features of CAS 4:
>
> * Framework for multi-factor authentication
> * Improved protocol support (OAuth, CASv3)
> * Improved password expiration support
>
> The work-in-progress documentation for CAS 4 is available at
> http://jasig.github.io/cas/.
>
> Best,
> Marvin
>
> --
> You are currently subscribed to [email protected] as:
> [email protected]
> To unsubscribe, change settings or access archives, see
> http://www.ja-sig.org/wiki/display/JSG/cas-user

-- 
You are currently subscribed to [email protected] as: 
[email protected]
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-user

Reply via email to