File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22
3- ## [ 3.0.0] ( https://github.com/auth0/java-jwt/tree/3.0.0 ) (2016-12-01)
3+ ## [ 3.0.1] ( https://github.com/auth0/java-jwt/tree/3.0.0 ) (2016-12-05)
4+ [ Full Changelog] ( https://github.com/auth0/java-jwt/compare/3.0.0...3.0.1 )
5+
6+ Update to allow sync with Maven Central
7+
8+ ## [ 3.0.0] ( https://github.com/auth0/java-jwt/tree/3.0.0 ) (2016-12-05)
49
510Reimplemented java-jwt to improve API and include more signing algorithms
611
Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ A Java implementation of [JSON Web Tokens (draft-ietf-oauth-json-web-token-08)](
1616<dependency >
1717 <groupId >com.auth0</groupId >
1818 <artifactId >java-jwt</artifactId >
19- <version >3.0.0 </version >
19+ <version >3.0.1 </version >
2020</dependency >
2121```
2222
2323### Gradle
2424
2525``` gradle
26- compile 'com.auth0:java-jwt:3.0.0 '
26+ compile 'com.auth0:java-jwt:3.0.1 '
2727```
2828
2929## Available Algorithms
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ auth0 {
1010 name " java jwt"
1111 repo " java-jwt"
1212 description " Java implementation of JSON Web Token (JWT)"
13+ url ' http://www.jwt.io'
1314 developer {
1415 id = " auth0"
1516 name = " Auth0"
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ class Auth0OSS implements Plugin<Project> {
4242 root. appendNode(' packaging' , ' jar' )
4343 root. appendNode(' name' , lib. name)
4444 root. appendNode(' description' , lib. description)
45+ root. appendNode(' url' , lib. url)
4546
4647 def developersNode = root. appendNode(' developers' )
4748 project. extensions. auth0. developers. each {
@@ -79,6 +80,7 @@ class Auth0Extension {
7980 String name
8081 String repo
8182 String description
83+ String url
8284 List<Developer > developers = []
8385
8486 private Project project
You can’t perform that action at this time.
0 commit comments