<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>net.shibboleth.idp.plugin.config.oidc</groupId>
    <artifactId>idp-plugin-oidc-config-parent</artifactId>
    <version>1.0.0</version>
  </parent>
  
  <artifactId>idp-plugin-oidc-config-impl</artifactId>  
  <name>Shibboleth IdP :: Plugins :: OIDC/OAuth Shared Configuration :: Implementation</name>
  <description>Implemtation of the OIDC/OAuth shared configuration plugin. Containing the shared configuration</description>
  
  <properties>
        <automatic.module.name>net.shibboleth.idp.plugin.oidc.config</automatic.module.name>
        <checkstyle.configLocation>${project.basedir}/../checkstyle.xml</checkstyle.configLocation>
  </properties>  
  
  <dependencies>
        <!-- Needed for module/plugin impls. -->
        <dependency>
            <groupId>${idp.groupId}</groupId>
            <artifactId>idp-admin-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>${idp.groupId}</groupId>
            <artifactId>idp-admin-impl</artifactId>
            <scope>provided</scope>
        </dependency>
  </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>                       
                        <manifestSections>
                            <manifestSection>
                                <name>net/shibboleth/oidc/common/</name>
                                <manifestEntries>
                                    <Implementation-Title>${project.artifactId}</Implementation-Title>
                                    <Implementation-Version>${project.version}</Implementation-Version>
                                    <Implementation-Vendor>shibboleth.net</Implementation-Vendor>
                                </manifestEntries>
                            </manifestSection>
                        </manifestSections>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </build>
  
</project>