Skip to content

Commit c07116e

Browse files
committed
Send url in pom
To allow central sync
1 parent 3135718 commit c07116e

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
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

510
Reimplemented java-jwt to improve API and include more signing algorithms
611

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

lib/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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"

scripts/maven.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)