gm-fabric-core-integration-verify
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.deciphernow</groupId>
<artifactId>gm-fabric-core-integration-verify</artifactId>
<version>0.2.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2017 Decipher Technology Studios LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.deciphernow</groupId>
<artifactId>gm-fabric</artifactId>
<version>0.2.1</version>
</parent>
<artifactId>gm-fabric-core-integration-verify</artifactId>
<packaging>jar</packaging>
<name>Microservice framework [Core-Integration-Verify]</name>
<properties>
<version.scala.plugin>3.1.0</version.scala.plugin>
<version.enforcer.plugin>1.4.1</version.enforcer.plugin>
</properties>
<build>
<plugins>
<plugin>
<!-- see http://davidb.github.com/scala-maven-plugin -->
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>${version.scala.plugin}</version>
<executions>
<execution>
<id>scala-compile-first</id>
<phase>process-resources</phase>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>scala-test-compile</id>
<phase>process-test-resources</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<version>1.0</version>
<configuration>
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
</configuration>
<executions>
<execution>
<id>test</id>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.deciphernow</groupId>
<artifactId>gm-fabric-core-integration-setup</artifactId>
<version>${parent.version}</version>
</dependency>
<dependency>
<groupId>com.deciphernow</groupId>
<artifactId>gm-fabric-core</artifactId>
<version>${parent.version}</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>finagle-core_${version.scala.major}</artifactId>
<version>${version.twitter.finagle}</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>finagle-stats_${version.scala.major}</artifactId>
<version>${version.twitter.finagle}</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>util-core_${version.scala.major}</artifactId>
<version>${version.twitter.util}</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>finagle-thrift_${version.scala.major}</artifactId>
<version>${version.twitter.finagle}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>finagle-serversets_${version.scala.major}</artifactId>
<version>${version.twitter.finagle}</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${version.slf4j}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${version.logback}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${version.logback}</version>
</dependency>
<dependency>
<groupId>com.deciphernow</groupId>
<artifactId>gm-fabric-core-integration-setup</artifactId>
<version>${parent.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${version.scala.major}</artifactId>
<version>${version.scala.test}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${version.logback}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${version.logback}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${version.scala}</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-compiler</artifactId>
<version>${version.scala}</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>twitter-server_${version.scala.major}</artifactId>
<version>${version.twitter.server}</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>finatra-http_${version.scala.major}</artifactId>
<version>${version.finatra}</version>
<exclusions>
<exclusion>
<groupId>com.twitter</groupId>
<artifactId>twitter-server_${version.scala.major}</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>