Skip to content

Commit

Permalink
Module Readme Files
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed Nov 25, 2012
1 parent d8533ff commit b4128c6
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
32 changes: 32 additions & 0 deletions hystrix-core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
## hystrix-core

This is the core module of Hystrix.

## Documentation

A general project README can be found at the [project home](../../).

The [Wiki](../../wiki) contains detailed documentation.


## Maven Central

Binaries and dependencies for this module can be found on [http://search.maven.org](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.hystrix%22%20AND%20a%3A%22hystrix-core%22).

__GroupId: com.netflix.hystrix__
__ArtifactId: hystrix-core__

Example for Maven:

```xml
<dependency>
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-core</artifactId>
<version>1.0.2</version>
</dependency>
```
and for Ivy:

```xml
<dependency org="com.netflix.hystrix" name="hystrix-core" rev="1.0.2" />
```
30 changes: 30 additions & 0 deletions hystrix-examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
## hystrix-examples

This module contains examples of using HystrixCommand, HystrixCollapser and other aspects of Hystrix.

## Documentation

Documentation related to the examples in this module is on the [How To Use](../../wiki/How-To-Use) page.


## Maven Central

Binaries and dependencies for this module can be found on [http://search.maven.org](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.hystrix%22%20AND%20a%3A%22hystrix-examples%22).

__GroupId: com.netflix.hystrix__
__ArtifactId: hystrix-examples__

Example for Maven:

```xml
<dependency>
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-examples</artifactId>
<version>1.0.2</version>
</dependency>
```
and for Ivy:

```xml
<dependency org="com.netflix.hystrix" name="hystrix-examples" rev="1.0.2" />
```

0 comments on commit b4128c6

Please sign in to comment.