SanityCheck
SanityCheck

Reputation: 169

Spring SAML2 Sample Compilation Errors

I have downloaded Spring SAML2 core and sample projects. When trying to compile the sample project in eclipse, it shows errors.

For example, in the class org.springframework.security.saml.web.MetadataController there are references to MetadataGenerator.setEntityAlias(..) that do not resolve.

I checked the source code of MetadataGenerator in SAML2 Core project and there is no such method.

What am I missing?

Upvotes: 2

Views: 259

Answers (1)

devwebcl
devwebcl

Reputation: 3163

It worked for me with 1.0.0.RC2 and not later versions.

Pointing to the following repository:

    <repository>
        <id>spring-milestones</id>
        <name>Spring Milestones</name>
        <url>http://repo.spring.io/milestone</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>

Upvotes: 1

Related Questions