cdap-tms
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-tms</artifactId> <version>6.11.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright © 2016-2018 Cask Data, Inc. 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>io.cdap.cdap</groupId> <artifactId>cdap</artifactId> <version>6.11.0</version> </parent> <artifactId>cdap-tms</artifactId> <name>CDAP Transactional Messaging System</name> <packaging>jar</packaging> <dependencies> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.cdap.common</groupId> <artifactId>common-http</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.tephra</groupId> <artifactId>tephra-api</artifactId> </dependency> <dependency> <groupId>org.apache.tephra</groupId> <artifactId>tephra-core</artifactId> <!-- Only TransactionCodec class from tephra-core is used, we don't need any other transitive dependencies --> <exclusions> <exclusion> <groupId>org.apache.twill</groupId> <artifactId>twill-common</artifactId> </exclusion> <exclusion> <groupId>org.apache.twill</groupId> <artifactId>twill-core</artifactId> </exclusion> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> </exclusion> <exclusion> <groupId>it.unimi.dsi</groupId> <artifactId>fastutil</artifactId> </exclusion> <exclusion> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.iq80.leveldb</groupId> <artifactId>leveldb</artifactId> <!-- leveldb 0.12 has conflicting guava 20 as a dependency. The uber jar shades guava --> <classifier>uber</classifier> </dependency> <dependency> <groupId>org.apache.avro</groupId> <artifactId>avro</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <!-- This is for bringing in logback-test.xml --> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-common</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-common-unit-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-storage-spi</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-security</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.cdap.cdap</groupId> <artifactId>cdap-messaging-spi</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>test-jar</id> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>