Skip to content

Commit

Permalink
Update README.md [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
James Thomas authored Mar 15, 2017
1 parent 4881c62 commit beaf3f3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Native Java bindings for Mountebank

## Project Status
Functional but not under active development. I do accept pull requets, though I may not respond to requests for a while.
Functional but not under active development. I accept pull requests, and generally get them merged within a week, and the resulting build out to central within a few hours of a successful merge.

## To install

Expand All @@ -13,12 +13,12 @@ You'll need to at least include javabank-core. This includes all of the classes
<dependency>
<groupId>org.mbtest.javabank</groupId>
<artifactId>javabank-core</artifactId>
<version>0.4.9</version>
<version>0.4.10</version>
</dependency>
```
#### Gradle
```
compile 'org.mbtest.javabank:javabank-core:0.4.9'
compile 'org.mbtest.javabank:javabank-core:0.4.10'
```

If you also need a REST client to talk to Mountebank, you can include the javabank-client library. I use [unirest](http://unirest.io/java.html) as my client of choice. If you already have a rest client in your application, you can save some overhead by continuing to use that instead, though that route will require you to learn a little more about the Mountebank REST API.
Expand All @@ -28,10 +28,10 @@ If you also need a REST client to talk to Mountebank, you can include the javaba
<dependency>
<groupId>org.mbtest.javabank</groupId>
<artifactId>javabank-client</artifactId>
<version>0.4.9</version>
<version>0.4.10</version>
</dependency>
```
#### Gradle
```
compile 'org.mbtest.javabank:javabank-client:0.4.9'
compile 'org.mbtest.javabank:javabank-client:0.4.10'
```

0 comments on commit beaf3f3

Please sign in to comment.