<?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>refcodes-textual-ext</artifactId>
    <groupId>org.refcodes</groupId>
    <version>0.4.0</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>refcodes-textual-ext-console</artifactId>
  <name>${project.groupId}:${project.artifactId}</name>
  <description>Artifact for providing command line toolbased extended functionality for
		the refcodes-textual artifact.</description>
  <url>https://bitbucket.org/refcodes/${parent.artifactId}</url>
  <developers>
    <developer>
      <name>Siegfried Steiner</name>
      <email>steiner@refcodes.org</email>
      <url>http://www.refcodes.org</url>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git@bitbucket.org:refcodes/${parent.artifactId}.git</connection>
    <developerConnection>scm:git:git@bitbucket.org:refcodes/${parent.artifactId}.git</developerConnection>
    <url>https://bitbucket.org/refcodes/${parent.artifactId}</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <includes>
            <include>**/*Test.java</include>
          </includes>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope>
              <minimizeJar>false</minimizeJar>
              <transformers>
                <transformer>
                  <mainClass>org.refcodes.textual.ext.console.impls.BannerConsoleApp</mainClass>
                </transformer>
                <transformer>
                  <resource>META-INF/spring.handlers</resource>
                </transformer>
                <transformer>
                  <resource>META-INF/spring.schemas</resource>
                </transformer>
              </transformers>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.refcodes</groupId>
      <artifactId>refcodes-console</artifactId>
      <version>0.4.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.refcodes</groupId>
      <artifactId>refcodes-textual</artifactId>
      <version>0.4.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.refcodes</groupId>
      <artifactId>refcodes-licensing</artifactId>
      <version>0.4.0</version>
      <scope>provided</scope>
    </dependency>
    <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>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.17</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>

