casinthecloud / cas-openid-demo

Demo web app to test OpenId support in CAS
10 stars 6 forks source link

Dependencies missing in the central repostitory #2

Closed ganeshrnair closed 8 years ago

ganeshrnair commented 11 years ago

opensaml1 artifact version 1.1b is not available and guice 2.0 is not available in the maven central repository

    <dependency>
        <groupId>org.jasig.cas</groupId>
        <artifactId>cas-server-support-openid</artifactId>
        <version>${cas.version}</version>
        <exclusions>
            <exclusion>
                <groupId>org.springframework</groupId>
                <artifactId>spring-expression</artifactId>
            </exclusion>
            <exclusion>
                <groupId>com.google.code.guice</groupId>
                <artifactId>guice</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.opensaml</groupId>
        <artifactId>opensaml1</artifactId>
        <version>1.1</version>
    </dependency>
    <dependency>
        <groupId>com.google.inject</groupId>
        <artifactId>guice</artifactId>
        <version>2.0</version>
    </dependency>
leleuj commented 11 years ago

Strange, these dependencies are resolved against jasig dev repo and jboss repo which are defined by default in the cas-server pom.xml 3.5.0.

I added theses repositories in the pom.xml of the cas-openid-demo module. It should be ok now...