This plugin provides SAML 2.0 support for Grails 3 and 4 applications. It was originally built from the Plugin that supported Grails 2 applications. It enables SAML configuration directly from your application.yml or application.groovy without having to manually configure the Spring SAML Plugin and Grails Spring Security Plugin
- Grails 3.0.x - Use Version 3.0.x of the plugin
- Grails 3.1.x - Use Version 3.1.x of the plugin
- Grails 3.3.x - Use Version 3.3.x of the plugin
- Grails 4.0.x - Use Version 4.0.2 of the plugin
Maven
<dependency>
<groupId>org.grails.plugins</groupId>
<artifactId>spring-security-saml</artifactId>
<version>4.0.2</version>
<type>pom</type>
</dependency>
Gradle
Grails 3.3.x
compile 'org.grails.plugins:spring-security-saml:3.3.1'
Grails 4.0.0:
compile 'org.grails.plugins:spring-security-saml:4.0.2'
NOTE: you may have to add the following repositories
repositories {
maven { url "http://central.maven.org/maven2/"}
maven { url "https://build.shibboleth.net/nexus/content/repositories/releases"}
maven { url "https://build.shibboleth.net/nexus/content/groups/public/"}
maven { url "https://code.lds.org/nexus/content/groups/main-repo"}
maven { url "http://repository.jboss.org/maven2/"}
}
See the documentation page for more information.