xchange-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.thecookielab.xchange</groupId>
<artifactId>xchange-core</artifactId>
<version>1.0.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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.thecookielab.xchange</groupId>
<artifactId>xchange-parent</artifactId>
<version>1.0.2</version>
</parent>
<artifactId>xchange-core</artifactId>
<name>XChange Core</name>
<description>Core functionality used by all other modules.</description>
<url>http://knowm.org/open-source/xchange/</url>
<inceptionYear>2012</inceptionYear>
<organization>
<name>The Cookie Lab</name>
</organization>
<!-- Parent provides default configuration for dependencies -->
<dependencies>
<!-- Third party dependencies -->
<dependency>
<groupId>com.github.mmazi</groupId>
<artifactId>rescu</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-ratelimiter</artifactId>
</dependency>
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-retry</artifactId>
</dependency>
<!--For String Joining, etc. -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
</dependencies>
</project>