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 373c1b9
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Apollo
======

[![Circle Status](https://circleci.com/gh/spotify/apollo.svg?style=shield&circle-token=5a9eb086ae3cec87e62fc8b6cdeb783cb318e3b9)](https://circleci.com/gh/spotify/apollo)
[![Coverage Status](https://coveralls.io/repos/spotify/apollo/badge.svg?branch=master&service=github)](https://coveralls.io/github/spotify/apollo?branch=master)
[![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*)
[![License](https://img.shields.io/github/license/spotify/apollo.svg)](LICENSE.txt)

Apollo
======

Apollo is a set of Java libraries that we use at Spotify when writing microservices. Apollo includes modules such as an HTTP server and a URI routing system, making it trivial to implement restful API services.

Apollo has been used in production at Spotify for a long time. As a part of the work to release version 1.0.0 we are moving the development of Apollo into the open. Please note that the API and documentation might change prior to the stable 1.0.0 open source release.
Expand Down
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
30 changes: 23 additions & 7 deletions apollo-entity/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# 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 +38,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 373c1b9

Please sign in to comment.