java-restify-netflix-hystrix
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.ljtfreitas</groupId> <artifactId>java-restify-netflix-hystrix</artifactId> <version>2.1.0</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> <parent> <groupId>com.github.ljtfreitas</groupId> <artifactId>java-restify-group</artifactId> <version>2.1.0</version> </parent> <artifactId>java-restify-netflix-hystrix</artifactId> <properties> <netflix.hystrix.version>1.5.18</netflix.hystrix.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-restify-circuit-breaker</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-restify-call-handler</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-restify-contract</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-restify-reflection</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>java-restify-util</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-core</artifactId> <version>${netflix.hystrix.version}</version> </dependency> </dependencies> </project>