Skip to content

Commit c5c3d9f

Browse files
committed
remove travis. add circle ci badge
1 parent 199aca8 commit c5c3d9f

2 files changed

Lines changed: 3 additions & 25 deletions

File tree

.travis.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Java JWT
44

5-
[![Build Status](https://travis-ci.org/auth0/java-jwt.svg?branch=v3)](https://travis-ci.org/auth0/java-jwt)
5+
[![CircleCI](https://img.shields.io/circleci/project/github/auth0/java-jwt.svg?style=flat-square)](https://circleci.com/gh/auth0/java-jwt/tree/master)
66
[![Coverage Status](https://img.shields.io/codecov/c/github/auth0/java-jwt/v3.svg?style=flat-square)](https://codecov.io/github/auth0/java-jwt)
77
[![License](http://img.shields.io/:license-mit-blue.svg?style=flat)](http://doge.mit-license.org)
88

@@ -216,7 +216,7 @@ Additional Claims defined in the token's Header can be obtained by calling `getH
216216
Claim claim = jwt.getHeaderClaim("owner");
217217
```
218218

219-
When creating a Token with the `JWT.create()` you can specify header Claims by calling `withHeader()` and passing both the map of claims.
219+
When creating a Token with the `JWT.create()` you can specify header Claims by calling `withHeader()` and passing both the map of claims.
220220

221221
```java
222222
Map<String, Object> headerClaims = new HashMap();
@@ -302,7 +302,7 @@ or
302302
Claim claim = jwt.getClaim("isAdmin");
303303
```
304304

305-
When creating a Token with the `JWT.create()` you can specify a custom Claim by calling `withClaim()` and passing both the name and the value.
305+
When creating a Token with the `JWT.create()` you can specify a custom Claim by calling `withClaim()` and passing both the name and the value.
306306

307307
```java
308308
String token = JWT.create()

0 commit comments

Comments
 (0)