<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright (c) 2018 Bixbit - Krzysztof Benedyczak. All rights reserved.
  ~ See LICENCE.txt file for licensing 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">
    <parent>
        <artifactId>unity-server-parent</artifactId>
        <groupId>io.imunity</groupId>
        <version>4.2.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>unity-server-vaadin-endpoint-common</artifactId>
    <name>UNITY Server vaadin endpoint common module</name>
    <description>Common Vaadin endpoint components</description>

    <properties>
        <m.name>vaadin-endpoint-common</m.name>
        <vaadin.productionMode>true</vaadin.productionMode>
    </properties>

    <scm>
        <connection>${scm.base}/${m.name}</connection>
        <developerConnection>${scm.base}/${m.name}</developerConnection>
        <tag>unity-server-parent-4.2.0</tag>
    </scm>

    <dependencies>
        <dependency>
            <groupId>io.imunity</groupId>
            <artifactId>unity-server-engine-api</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>io.imunity</groupId>
            <artifactId>unity-server-std-plugins</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>io.imunity</groupId>
            <artifactId>unity-vaadin-elements</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.eclipse.jetty.ee10</groupId>
            <artifactId>jetty-ee10-webapp</artifactId>
        </dependency>
        <dependency>
            <groupId>org.eclipse.jetty.ee10</groupId>
            <artifactId>jetty-ee10-plus</artifactId>
        </dependency>
        <dependency>
            <groupId>org.eclipse.jetty.ee10</groupId>
            <artifactId>jetty-ee10-annotations</artifactId>
        </dependency>
        <dependency>
            <groupId>jakarta.annotation</groupId>
            <artifactId>jakarta.annotation-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.zxing</groupId>
            <artifactId>core</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.zxing</groupId>
            <artifactId>javase</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
        </dependency>
        <dependency>
            <groupId>com.github.ua-parser</groupId>
            <artifactId>uap-java</artifactId>
        </dependency>
        <dependency>
            <groupId>io.imunity.simplecaptcha</groupId>
            <artifactId>simplecaptcha</artifactId>
        </dependency>
        <dependency>
            <groupId>com.vaadin.componentfactory</groupId>
            <artifactId>tooltip</artifactId>
        </dependency>
        
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>