rmq
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.orctom</groupId>
<artifactId>rmq</artifactId>
<version>1.0</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.orctom</groupId>
<artifactId>basepom</artifactId>
<version>1.4</version>
</parent>
<artifactId>rmq</artifactId>
<version>1.0</version>
<description>RocksDB based Embedded Persistent Queue</description>
<url>https://github.com/orctom/rmq/</url>
<issueManagement>
<url>https://github.com/orctom/rmq/issues</url>
<system>GitHub</system>
</issueManagement>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/orctom/rmq/</url>
<connection>scm:git:git@github.com:orctom/rmq.git</connection>
<developerConnection>scm:git:git@github.com:orctom/rmq.git</developerConnection>
<tag>1.0</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.rocksdb</groupId>
<artifactId>rocksdbjni</artifactId>
<version>5.11.3</version>
</dependency>
<dependency>
<groupId>com.orctom.laputa</groupId>
<artifactId>laputa-utils</artifactId>
<version>0.3</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>24.1-jre</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>