<?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>galleon-parent</artifactId>
    <groupId>org.jboss.galleon</groupId>
    <version>4.2.2.Final</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>galleon-cli</artifactId>
  <name>Galleon CLI</name>
  <url>http://maven.apache.org</url>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <filters>
                <filter>
                  <artifact>org.jboss.logging:jboss-logging</artifact>
                  <includes>
                    <include>**</include>
                  </includes>
                </filter>
                <filter>
                  <artifact>org.aesh:aesh</artifact>
                  <includes>
                    <include>org/**</include>
                    <include>*.txt</include>
                  </includes>
                </filter>
                <filter>
                  <artifact>org.aesh:aesh-extensions</artifact>
                  <includes>
                    <include>org/**</include>
                    <include>*.txt</include>
                  </includes>
                </filter>
              </filters>
              <transformers>
                <transformer />
                <transformer>
                  <mainClass>org.jboss.galleon.cli.CliMain</mainClass>
                </transformer>
              </transformers>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.wildfly.checkstyle</groupId>
      <artifactId>wildfly-checkstyle-config</artifactId>
      <version>1.0.8.Final</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>
