<?xml version="1.0" encoding="UTF-8"?>
<!-- See LICENSE.txt file in the root directory of this repository for the 
    copyright/license information. -->
<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>
        <artifactId>idp-oidc-extension-parent</artifactId>
        <groupId>org.geant</groupId>
        <version>2.0.0-beta1</version>
    </parent>
    
    <artifactId>idp-oidc-extension-distribution</artifactId>

    <properties>
        <automatic.module.name>org.geant.idpextension.oidc.distribution</automatic.module.name>
    </properties>

    <build>
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <tarLongFileMode>posix</tarLongFileMode>
          <descriptors>
              <descriptor>src/assembly/dep.xml</descriptor>
          </descriptors>
        </configuration>
        <executions>
          <execution>
            <id>create-archive</id>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
    </build>

    <scm>
        <connection>${shibboleth.scm.connection}java-idp-oidc</connection>
        <developerConnection>${shibboleth.scm.developerConnection}java-idp-oidc</developerConnection>
        <url>${shibboleth.scm.url}java-idp-oidc.git</url>
    </scm>

</project>

