<?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">
  <parent>
    <artifactId>coeus-db</artifactId>
    <groupId>org.kuali.coeus</groupId>
    <version>2603.0013</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>coeus-db-client</artifactId>
  <name>Kuali Coeus Database Client</name>
  <description>Executable Kuali Coeus Database Client to be used for command line database migrations.</description>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <transformers>
                <transformer>
                  <resource>META-INF/services/org.flywaydb.core.extensibility.Plugin</resource>
                </transformer>
                <transformer>
                  <mainClass>co.kuali.coeus.db.client.FlywayClient</mainClass>
                </transformer>
              </transformers>
              <filters>
                <filter>
                  <artifact>*:*</artifact>
                  <excludes>
                    <exclude>**/Log4j2Plugins.dat</exclude>
                  </excludes>
                </filter>
              </filters>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <properties>
    <copy.javaagent.off>true</copy.javaagent.off>
  </properties>
</project>
