<?xml version="1.0" encoding="UTF-8"?>
<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>io.gitlab.openchvote</groupId>
        <artifactId>openchvote</artifactId>
        <version>1.2.2</version>
    </parent>

    <artifactId>printing-authority</artifactId>
    <version>1.2.2</version>
    <name>printing-authority</name>

    <description>
        This module implements the 'printing authority' party of the CHVote protocol.
    </description>

    <repositories>
        <repository>
            <id>local-maven-repo</id>
            <url>file://${project.basedir}/../project-maven-repo</url>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>io.gitlab.openchvote</groupId>
            <artifactId>algorithms</artifactId>
            <version>1.2.2</version>
        </dependency>
        <dependency>
            <groupId>io.gitlab.openchvote</groupId>
            <artifactId>utilities</artifactId>
            <version>1.2.2</version>
        </dependency>
        <dependency>
            <groupId>io.gitlab.openchvote</groupId>
            <artifactId>framework</artifactId>
            <version>1.2.2</version>
        </dependency>
        <dependency>
            <groupId>io.gitlab.openchvote</groupId>
            <artifactId>protocol</artifactId>
            <version>1.2.2</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>com.mycila</groupId>
                <artifactId>license-maven-plugin</artifactId>
                <version>${mycila.license.plugin.version}</version>
                <configuration>
                    <header>../etc/license-header.txt</header>
                    <headerDefinitions>
                        <headerDefinition>../etc/filecomment.xml</headerDefinition>
                    </headerDefinitions>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
