ch-mq-remote
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.cloudhopper</groupId> <artifactId>ch-mq-remote</artifactId> <version>3.0.4</version> </dependency>
<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> <groupId>com.cloudhopper</groupId> <artifactId>ch-mq-remote</artifactId> <packaging>jar</packaging> <name>ch-mq-remote</name> <parent> <groupId>com.cloudhopper</groupId> <artifactId>ch-chimpq</artifactId> <version>3.0.4</version> </parent> <dependencies> <!-- compile scope --> <dependency> <groupId>com.cloudhopper</groupId> <artifactId>ch-mq</artifactId> <version>${project.version}</version> </dependency> <!-- client used for remote broker requests --> <dependency> <groupId>com.ning</groupId> <artifactId>async-http-client</artifactId> <version>1.7.24</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> <exclusion> <groupId>io.netty</groupId> <artifactId>netty</artifactId> </exclusion> </exclusions> </dependency> <!-- for broker server --> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>${jetty.version}</version> <exclusions> <exclusion> <groupId>org.eclipse.jetty.orbit</groupId> <artifactId>javax.servlet</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-continuation</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-http</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-io</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-util</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-security</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty</artifactId> <version>${netty.version}</version> </dependency> <!-- provided scope --> <!-- runtime scope --> <!-- testing scope --> <!-- for the simulator --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> <version>${spring.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <!-- for tokyo cabinet data store --> <dependency> <groupId>com.cloudhopper</groupId> <artifactId>ch-tokyocabinet-java</artifactId> <version>${ch-tokyocabinet-java.version}</version> <scope>test</scope> </dependency> <!-- for kyoto cabinet data store --> <dependency> <groupId>com.cloudhopper</groupId> <artifactId>ch-kyotocabinet-java</artifactId> <version>${ch-kyotocabinet-java.version}</version> <scope>test</scope> </dependency> <!-- for leveldb data store --> <dependency> <groupId>org.fusesource.leveldbjni</groupId> <artifactId>leveldbjni-all</artifactId> <version>${leveldbjni.version}</version> <scope>test</scope> </dependency> </dependencies> <properties> <jetty.group>org.eclipse.jetty</jetty.group> <jetty.version>7.6.14.v20131031</jetty.version> <netty.version>3.9.0.Final</netty.version> <spring.version>2.5.6</spring.version> <main.java.package>com.cloudhopper.mq.broker</main.java.package> </properties> </project>