Skip to content
This repository has been archived by the owner on Sep 28, 2021. It is now read-only.

Commit

Permalink
update version info in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rouzwawi committed Apr 3, 2016
1 parent bbfd02d commit 3626748
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
5 changes: 5 additions & 0 deletions apollo-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
<artifactId>apollo-extra</artifactId>
<version>1.0.5-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.spotify</groupId>
<artifactId>apollo-entity</artifactId>
<version>1.0.5-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.spotify</groupId>
<artifactId>apollo-http-service</artifactId>
Expand Down
27 changes: 20 additions & 7 deletions apollo-entity/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Apollo Entity
# Apollo Entity [![Maven Central](https://img.shields.io/maven-central/v/com.spotify/apollo-parent.svg)](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.spotify%22%20apollo*)

A set of Apollo Middleware for working with entity types in route handlers.

Expand Down Expand Up @@ -35,12 +35,25 @@ library contains exactly those middlewares, ready to use directly with your rout

Add Maven dependency:

```xml
<dependency>
<groupId>com.spotify</groupId>
<artifactId>apollo-entity</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
```
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.spotify</groupId>
<artifactId>apollo-bom</artifactId>
<version>{SEE BADGE}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.spotify</groupId>
<artifactId>apollo-entity</artifactId>
</dependency>
</dependencies>
```

Create your Jackson `ObjectMapper` and the [`EntityMiddleware`][1] factory:
Expand Down

0 comments on commit 3626748

Please sign in to comment.