<?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>

    <packaging>jar</packaging>
    <artifactId>sd-shared-web-dictionary-posgres</artifactId>
    <version>1.0.4</version>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>11</source>
                    <target>11</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <properties>
        <maven.compiler.source>1.10</maven.compiler.source>
        <maven.compiler.target>1.10</maven.compiler.target>
        <shared.version>3.5.0</shared.version>
        <parent.version>3.2.7</parent.version>
        <postgres.version>1.0.8</postgres.version>
    </properties>
    <parent>
        <groupId>systems.dennis</groupId>
        <artifactId>sd-parent</artifactId>
        <version>1.1.3</version>
    </parent>

    <dependencies>
        <!-- to enable hot swapping, disable cache for template and enable live reload -->
        <dependency>
            <groupId>systems.dennis</groupId>
            <artifactId>sd-shared-web</artifactId>
            <version>${shared.version}</version>
        </dependency>
        <dependency>
            <groupId>systems.dennis</groupId>
            <artifactId>sd-shared-web-db-postgres</artifactId>
            <version>${postgres.version}</version>
        </dependency>

    </dependencies>


</project>
