<?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>

    <artifactId>experiments</artifactId>
    <version>1.4.2</version>
    <packaging>jar</packaging>

    <parent>
        <groupId>ch.heia-fr.isc.data-cockpit</groupId>
        <artifactId>data-cockpit-main</artifactId>
        <version>1.4.2</version>
    </parent>


    <name>Data-Cockpit Experiment</name>
    <description>
        This project is a show-case of the Data-Cockpit program. The goal is to demonstrate a simple
        application of the different Data-Cockpit components once they are assembled.
        This project should help people to understand how to implement the Experiment interface, which will trigger
        the Tree iteration, the Database being populated and the visualization of the data offered by the Visualizer.
    </description>
    <url>https://github.com/heiafr-isc/Data-Cockpit</url>

    <properties>
        <jar.finalName>${project.name}-${project.version}</jar.finalName>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>

    <licenses>
        <license>
            <name>GNU Lesser General Public License v3.0</name>
            <url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>Sébastien Rumley</name>
            <email>sebastien.rumley@hefr.ch</email>
            <organization>HEIA-FR</organization>
            <organizationUrl>https://www.heia-fr.ch/</organizationUrl>
        </developer>
    </developers>

    <scm>
        <url>https://github.com/heiafr-isc/Data-Cockpit</url>
        <connection>scm:git:https://github.com/heiafr-isc/Data-Cockpit</connection>
        <developerConnection>scm:git:https://github.com/heiafr-isc/Data-Cockpit</developerConnection>
    </scm>

    <issueManagement>
        <system>GitHub</system>
        <url>https://github.com/heiafr-isc/Data-Cockpit/issues</url>
    </issueManagement>

    <ciManagement>
        <system>GitHub</system>
        <url>https://github.com/heiafr-isc/Data-Cockpit/actions</url>
    </ciManagement>

    <dependencies>

        <dependency>
            <groupId>ch.heia-fr.isc.data-cockpit</groupId>
            <artifactId>general-libraries</artifactId>
            <version>${general-libraries.version}</version>
        </dependency>

        <dependency>
            <groupId>ch.heia-fr.isc.data-cockpit</groupId>
            <artifactId>tree</artifactId>
            <version>${tree.version}</version>
        </dependency>

        <dependency>
            <groupId>ch.heia-fr.isc.data-cockpit</groupId>
            <artifactId>visualizer</artifactId>
            <version>${visualizer.version}</version>
        </dependency>

        <dependency>
            <groupId>ch.heia-fr.isc.data-cockpit</groupId>
            <artifactId>database</artifactId>
            <version>${database.version}</version>
        </dependency>
    </dependencies>

</project>
