<?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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.kuali.coeus</groupId>
        <artifactId>coeus-db</artifactId>
        <version>kc-adhoc-colostate-excon-master-SNAPSHOT</version>
    </parent>

    <artifactId>coeus-db-data-conv</artifactId>
    <packaging>jar</packaging>
    <name>Kuali Coeus Database Conversion</name>
    <description>
        The Kuali Coeus Data Conversion module is a program to aid in the conversion of data from one version of Kuali Coeus to another.
    </description>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>${maven-jar-plugin.version}</version>
                <configuration>
                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>
                            <mainClass>org.kuali.coeus.dc.Main</mainClass>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>

        <!--
             this program specifies no external dependencies other than db drivers to make execution of this
             program as simple as possible
        -->

        <dependency>
            <groupId>${db.groupId}</groupId>
            <artifactId>${db.artifactId}</artifactId>
            <version>${db.version}</version>
            <scope>runtime</scope>
        </dependency>
    </dependencies>
</project>
