Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
fixes #44
Browse files Browse the repository at this point in the history
  • Loading branch information
jbellmann committed Mar 4, 2016
1 parent 2a48dc3 commit 55c10f7
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

A Java library that keeps OAuth 2.0 service access tokens in memory for your usage.

## Maven dependency

[![Build Status](https://travis-ci.org/zalando-stups/tokens.svg?branch=master)](https://travis-ci.org/zalando-stups/tokens)
![Maven Central](https://img.shields.io/maven-central/v/org.zalando.stups/tokens.svg)
[![Coverage Status](https://coveralls.io/repos/zalando-stups/tokens/badge.svg?branch=master)](https://coveralls.io/r/zalando-stups/tokens?branch=master)
[![codecov.io](https://codecov.io/github/zalando-stups/tokens/coverage.svg?branch=master)](https://codecov.io/github/zalando-stups/tokens?branch=master)

## Maven dependency

```xml
<dependency>
<groupId>org.zalando.stups</groupId>
Expand All @@ -17,6 +17,18 @@ A Java library that keeps OAuth 2.0 service access tokens in memory for your usa
</dependency>
```

### Apache-Httpclient is also needed because we depend it currently

So, you also have to add it with:

```xml
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>your version</version>
</dependency>
```

## Usage

```java
Expand Down

0 comments on commit 55c10f7

Please sign in to comment.