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 e2813e1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 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
8 changes: 6 additions & 2 deletions apollo-entity/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Apollo Entity
Apollo Entity
=============

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

Expand Down Expand Up @@ -39,10 +40,12 @@ Add Maven dependency:
<dependency>
<groupId>com.spotify</groupId>
<artifactId>apollo-entity</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.5</version>
</dependency>
```

_See the [project skeleton] docs for how to use a Maven BOM for dependency versions_

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

```java
Expand Down Expand Up @@ -124,3 +127,4 @@ See [`EntityTest`][2] for a complete list of route options and tests.

[1]: src/main/java/com/spotify/apollo/entity/EntityMiddleware.java
[2]: src/test/java/com/spotify/apollo/entity/EntityTest.java
[project skeleton]: https://github.com/spotify/apollo/tree/master/apollo-http-service#minimal-project-skeleton

0 comments on commit e2813e1

Please sign in to comment.