coordinator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.gitlab.openchvote</groupId>
<artifactId>coordinator</artifactId>
<version>1.3</version>
</dependency><?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.3</version>
</parent>
<artifactId>coordinator</artifactId>
<version>1.3</version>
<name>coordinator</name>
<description>
This module provides an implementation of an additional CHVote protocol party called 'Coordinator'.
</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>framework</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>io.gitlab.openchvote</groupId>
<artifactId>protocol</artifactId>
<version>1.3</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>