Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 2
Next »
Maven CoordinatesAdd Shibboleth repositories to your POM
<repositories>
<repository>
<id>shib-release</id>
<url>https://build.shibboleth.net/nexus/content/groups/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>shib-snapshot</id>
<url>https://build.shibboleth.net/nexus/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
Example : Add IdP dependencies to your POM
<properties>
<idp.version>3.2.1</idp.version>
</properties>
<dependencies>
<dependency>
<groupId>net.shibboleth.idp</groupId>
<artifactId>idp-attribute-resolver-api</artifactId>
<version>${idp.version}</version>
</dependency>
</dependencies>
Example : Add OpenSAML dependencies to your POM
<properties>
<opensaml.version>3.2.0</opensaml.version>
</properties>
<dependencies>
<dependency>
<groupId>org.opensaml</groupId>
<artifactId>opensaml-saml-api</artifactId>
<version>${opensaml.version}</version>
</dependency>
</dependencies>