diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c7152c0..758b7b55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log -## [3.0.0](https://github.com/auth0/java-jwt/tree/3.0.0) (2016-12-01) +## [3.0.1](https://github.com/auth0/java-jwt/tree/3.0.0) (2016-12-05) +[Full Changelog](https://github.com/auth0/java-jwt/compare/3.0.0...3.0.1) + +Update to allow sync with Maven Central + +## [3.0.0](https://github.com/auth0/java-jwt/tree/3.0.0) (2016-12-05) Reimplemented java-jwt to improve API and include more signing algorithms diff --git a/README.md b/README.md index 32410236..42172e8d 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,14 @@ A Java implementation of [JSON Web Tokens (draft-ietf-oauth-json-web-token-08)]( com.auth0 java-jwt - 3.0.0 + 3.0.1 ``` ### Gradle ```gradle -compile 'com.auth0:java-jwt:3.0.0' +compile 'com.auth0:java-jwt:3.0.1' ``` ## Available Algorithms diff --git a/lib/build.gradle b/lib/build.gradle index e27b8b96..e6942415 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -10,6 +10,7 @@ auth0 { name "java jwt" repo "java-jwt" description "Java implementation of JSON Web Token (JWT)" + url 'http://www.jwt.io' developer { id = "auth0" name = "Auth0" diff --git a/scripts/maven.gradle b/scripts/maven.gradle index fc1d9a18..a541b008 100644 --- a/scripts/maven.gradle +++ b/scripts/maven.gradle @@ -42,6 +42,7 @@ class Auth0OSS implements Plugin { root.appendNode('packaging', 'jar') root.appendNode('name', lib.name) root.appendNode('description', lib.description) + root.appendNode('url', lib.url) def developersNode = root.appendNode('developers') project.extensions.auth0.developers.each { @@ -79,6 +80,7 @@ class Auth0Extension { String name String repo String description + String url List developers = [] private Project project