<?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-sql</artifactId>
    <packaging>jar</packaging>
    <name>Kuali Coeus Database SQL</name>
    <description>
        The Kuali Coeus Database SQL module contains versioned and sequenced sql files and java migrations for
        the Kuali Coeus application.  These scripts include support for MySQL, and Oracle.
        They include both bootstrap, demo, and stage data.
    </description>

    <properties>
        <copy.javaagent.off>true</copy.javaagent.off>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.kuali.coeus</groupId>
            <artifactId>coeus-db-data-conv</artifactId>
            <version>${project.version}</version>
        </dependency>

        <dependency>
            <groupId>org.kuali.coeus</groupId>
            <artifactId>coeus-db-api</artifactId>
            <version>${project.version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-api</artifactId>
        </dependency>
    </dependencies>

    <profiles>
        <profile>
            <id>license</id>
            <properties>
                <license.exclude>**/*.sql</license.exclude>
            </properties>
        </profile>
    </profiles>


</project>
