riptide-hystrix
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.zalando</groupId> <artifactId>riptide-hystrix</artifactId> <version>2.5.1</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>org.zalando</groupId> <artifactId>riptide-parent</artifactId> <version>2.5.1</version> </parent> <prerequisites> <maven>3.0.4</maven> </prerequisites> <artifactId>riptide-hystrix</artifactId> <name>Riptide: Hystrix</name> <description>Client side response routing</description> <properties> <hystrix.version>1.5.12</hystrix.version> </properties> <dependencies> <dependency> <groupId>org.zalando</groupId> <artifactId>riptide-core</artifactId> </dependency> <dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-core</artifactId> <version>${hystrix.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-junit</artifactId> <version>${hystrix.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> </dependency> <dependency> <groupId>com.github.rest-driver</groupId> <artifactId>rest-client-driver</artifactId> </dependency> <dependency> <groupId>org.zalando</groupId> <artifactId>riptide-httpclient</artifactId> <scope>test</scope> </dependency> </dependencies> </project>