<project xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>net.shibboleth.idp.plugin.authn</groupId>
		<artifactId>idp-plugin-oidc-rp-parent</artifactId>
		<version>0.9.0</version>
	</parent>

	<artifactId>idp-plugin-oidc-rp-api</artifactId>
	<packaging>jar</packaging>
	<name>Shibboleth IdP :: Plugins :: OIDC RP Login Flow API</name>
	<description>IdP OIDC RelyingParty Proxy API.</description>

	<properties>
		<checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
		<automatic.module.name>net.shibboleth.idp.plugin.authn.oidc.rp.api</automatic.module.name>
	</properties>

	<dependencies>
        
		<!-- Provided dependencies -->
		<dependency>
			<groupId>com.google.code.findbugs</groupId>
			<artifactId>jsr305</artifactId>
			<scope>provided</scope>
		</dependency>        
		 <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <scope>provided</scope>
        </dependency>
         <dependency>
            <groupId>com.nimbusds</groupId>
            <artifactId>nimbus-jose-jwt</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>${idp.groupId}</groupId>
            <artifactId>idp-authn-api</artifactId>
            <scope>provided</scope>
        </dependency>
         <dependency>
            <groupId>${idp.groupId}</groupId>
            <artifactId>idp-saml-api</artifactId>
            <scope>provided</scope>
        </dependency>
         <dependency>
            <groupId>net.shibboleth.oidc</groupId>
            <artifactId>oidc-common-profile-api</artifactId>
            <scope>provided</scope>
        </dependency>
         <dependency>
            <groupId>net.shibboleth.oidc</groupId>
            <artifactId>oidc-common-metadata-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.nimbusds</groupId>
            <artifactId>oauth2-oidc-sdk</artifactId>
            <scope>provided</scope>
        </dependency> 
         <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
            <scope>provided</scope>
        </dependency>   
	</dependencies>
	
</project>