Skip to content

Commit

Permalink
to use sections
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmcclean committed Aug 5, 2015
1 parent f594170 commit 9559dbe
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 4 deletions.
16 changes: 16 additions & 0 deletions micro-client/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,19 @@ This plugin provides two REST Clients
2. AsyncRestClient - which is asyncrhonous, but makes use of threads

The NIORestClient is available as Spring bean. AsyncRestClient can simply be instantiated via the new keyword.

## To use

Simply add to the classpath

Maven

<dependency>
<groupId>com.aol.microservices</groupId>
<artifactId>microserver-client</artifactId>
<version>0.61</version>
</dependency>
Gradle

compile 'com.aol.microservices:microserver-client:0.61'
18 changes: 17 additions & 1 deletion micro-cors/readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# CORS Plugin

Set response headers for Cross Domain support via a Servlet Filter
Set response headers for Cross Domain support via a Servlet Filter

## To use

Simply add to the classpath

Maven

<dependency>
<groupId>com.aol.microservices</groupId>
<artifactId>microserver-cors</artifactId>
<version>0.61</version>
</dependency>
Gradle

compile 'com.aol.microservices:microserver-cors:0.61'
18 changes: 15 additions & 3 deletions micro-events/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,26 @@

This adds a facility to capture events such as requests, request execution and scheduled jobs.

## Installing this plugin
## To use

Simply add micro-events to your classpath.
Simply add to the classpath

Maven

<dependency>
<groupId>com.aol.microservices</groupId>
<artifactId>microserver-events</artifactId>
<version>0.61</version>
</dependency>
Gradle

compile 'com.aol.microservices:microserver-events:0.61'

### Depends on

1. [micro-reactive](https://github.com/aol/micro-server/tree/master/micro-reactive)
2. [micro-guava]()
2. [micro-guava](https://github.com/aol/micro-server/tree/master/micro-guava)

## Capturing scheduled Jobs

Expand Down

0 comments on commit 9559dbe

Please sign in to comment.