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

    <groupId>com.armedia.acm.acm-tool-integrations</groupId>
    <artifactId>acm-spring-classpath-copier</artifactId>
    <name>Tool Integrations: Copy from Classpath to Working Folder</name>
    <description>Copy files matching a classpath pattern (e.g. Activiti workflow definitions
        and Drools decision table spreadsheets) to the application working folder.

        Also copy all built-in Spring configuration files from the WAR file to
        $HOME/.acm/default-config/spring directory and all custom Spring configuration
        files to $HOME/.acm/custom-config/spring directory. Then, compare custom
        defined beans with built-in ones and create DIFF files when there is a
        difference.
    </description>

    <dependencies>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
        </dependency>

        <!-- spring -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
        </dependency>

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

</project>