sjsucohort6/amigo-chatbot

View on GitHub
command-processor-service/dependency-reduced-pom.xml

Summary

Maintainability
Test Coverage
<?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>amigo-chatbot</artifactId>
    <groupId>edu.sjsu.amigo</groupId>
    <version>1.0-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>command-processor-service</artifactId>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>2.3</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <transformers>
                <transformer />
                <transformer>
                  <mainClass>edu.sjsu.amigo.cp.CommandProcessorApplication</mainClass>
                </transformer>
              </transformers>
            </configuration>
          </execution>
        </executions>
        <configuration>
          <createDependencyReducedPom>true</createDependencyReducedPom>
          <filters>
            <filter>
              <artifact>*:*</artifact>
              <excludes>
                <exclude>META-INF/*.SF</exclude>
                <exclude>META-INF/*.DSA</exclude>
                <exclude>META-INF/*.RSA</exclude>
              </excludes>
            </filter>
          </filters>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.16.6</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
  <properties>
    <dropwizard.version>1.1.0</dropwizard.version>
    <quartz.version>2.2.1</quartz.version>
    <testng.version>6.8</testng.version>
    <maven-compiler-plugin.source>1.8</maven-compiler-plugin.source>
    <kafka-clients.version>0.10.2.0</kafka-clients.version>
    <docker-client.version>7.0.2</docker-client.version>
    <lombok.version>1.16.6</lombok.version>
    <simple-slack-api.version>0.6.0</simple-slack-api.version>
  </properties>
</project>