<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.oidc</groupId>
        <artifactId>oidc-common-parent</artifactId>
        <version>2.2.1</version>
    </parent>

    <artifactId>oidc-common-saml-impl</artifactId>
    <packaging>jar</packaging>    
    <name>Shibboleth IdP :: Plugins :: OIDC Common :: SAML Metadata Extension Implementation</name>
    <description>Implementation and OpenSAML configuration for the SAML metadata extension for OIDC RPs.</description>
    
    <properties>
        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
        <automatic.module.name>net.shibboleth.oidc.saml.impl</automatic.module.name>
    </properties>
    
    <dependencies>
        <dependency>
            <groupId>net.shibboleth.oidc</groupId>
            <artifactId>oidc-common-saml-api</artifactId>
            <scope>provided</scope>
        </dependency>
         <dependency>
            <groupId>org.opensaml</groupId>
            <artifactId>opensaml-saml-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>${opensaml.groupId}</groupId>
            <artifactId>opensaml-core</artifactId>
            <version>${opensaml.version}</version>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>${opensaml.groupId}</groupId>
            <artifactId>opensaml-saml-impl</artifactId>
            <version>${opensaml.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>
