xchange-stream-bitmex
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>info.bitrich.xchange-stream</groupId> <artifactId>xchange-stream-bitmex</artifactId> <version>4.4.2</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"> <parent> <artifactId>xchange-stream-parent</artifactId> <groupId>info.bitrich.xchange-stream</groupId> <version>4.4.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>xchange-stream-bitmex</artifactId> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <excludes> <exclude>**/*IT.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>integration-tests</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <includes> <include>**/*IT.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>info.bitrich.xchange-stream</groupId> <artifactId>xchange-stream-core</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>info.bitrich.xchange-stream</groupId> <artifactId>xchange-stream-service-netty</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>org.knowm.xchange</groupId> <artifactId>xchange-bitmex</artifactId> <version>${xchange.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>fluent-hc</artifactId> <version>4.5.12</version> </dependency> </dependencies> </project>