<?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">
    <parent>
        <artifactId>acm-services</artifactId>
        <groupId>com.armedia.acm</groupId>
        <version>2021.03</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.armedia.acm.acm-services</groupId>
    <artifactId>acm-service-notification</artifactId>
    <packaging>jar</packaging>
    <name>ACM Service: Notification</name>
    <description>This plugin adds the ability to add and remove notifications for an object</description>

    <dependencies>
        <!-- liquibase (database com.armedia.acm.ddl maintenance) -->
        <dependency>
            <groupId>org.liquibase</groupId>
            <artifactId>liquibase-core</artifactId>
            <scope>runtime</scope>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-tool-integrations</groupId>
            <artifactId>acm-spring-data-source</artifactId>
            <version>${acm.version}</version>
        </dependency>
        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-data</artifactId>
            <version>${acm.version}</version>
        </dependency>
        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-plugin-manager</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-plugins.acm-default-plugins</groupId>
            <artifactId>acm-object-association-plugin</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-configuration</artifactId>
            <version>${acm.version}</version>
        </dependency>
        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-authentication-token</artifactId>
            <version>${acm.version}</version>
        </dependency>
        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-ecm</artifactId>
            <version>${acm.version}</version>
        </dependency>
        <dependency>
            <groupId>com.armedia.acm</groupId>
            <artifactId>acm-web</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-audit</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-object-history</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-tool-integrations</groupId>
            <artifactId>acm-spring-context-holder</artifactId>
            <version>${acm.version}</version>
        </dependency>
        <dependency>
            <groupId>com.armedia.acm.acm-tool-integrations</groupId>
            <artifactId>acm-file-folder-watcher</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-tool-integrations</groupId>
            <artifactId>acm-files-property-file-manager</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-tool-integrations</groupId>
            <artifactId>acm-reload-properties</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-ms-outlook-integration</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-email-smtp</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-email</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-holiday</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-labels</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-calendar-integration-exchange</artifactId>
            <version>${acm.version}</version>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-tool-integrations</groupId>
            <artifactId>acm-hazelcast-integration</artifactId>
            <version>${acm.version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-template-configuration</artifactId>
            <version>${acm.version}</version>
        </dependency>
        <!-- bean validation -->
        <dependency>
            <groupId>javax.validation</groupId>
            <artifactId>validation-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-validator</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>javax.el</groupId>
            <artifactId>javax.el-api</artifactId>
            <scope>provided</scope>
        </dependency>

        <!-- preconditions -->
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>

        <dependency>
            <groupId>org.freemarker</groupId>
            <artifactId>freemarker</artifactId>
        </dependency>
        
        <!-- logging -->
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>

        <!-- json -->
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
        </dependency>

        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
        </dependency>

        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
        </dependency>

        <!-- servlet -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <scope>provided</scope>
        </dependency>

        <!-- testing -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
        </dependency>
        <!-- spring -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
        </dependency>

        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
        </dependency>

        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-api-easymock</artifactId>
        </dependency>

        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-module-junit4</artifactId>
        </dependency>

        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
        </dependency>

        <dependency>
            <groupId>org.codehaus.castor</groupId>
            <artifactId>castor-xml</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-oxm</artifactId>
            <scope>test</scope>
        </dependency>

        <!-- Reloading .property file without restarting the server -->
        <dependency>
            <groupId>net.unicon.springframework</groupId>
            <artifactId>springframework-addons</artifactId>
        </dependency>

        <dependency>
            <groupId>com.armedia.acm</groupId>
            <artifactId>acm-service-object-title</artifactId>
            <version>${acm.version}</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>com.armedia.acm.acm-services</groupId>
            <artifactId>acm-service-portal-gateway</artifactId>
            <version>${acm.version}</version>
        </dependency>
    </dependencies>
</project>
