Skip to content

Commit 217480c

Browse files
committedAug 30, 2016
Update README & LICENSE
1 parent 70ba877 commit 217480c

File tree

3 files changed

+40
-3
lines changed

3 files changed

+40
-3
lines changed
 

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Auth0
3+
Copyright (c) 2016 Auth0, Inc. <support@auth0.com> (http://auth0.com)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

‎README.md

+38-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# jwks-rsa-java
1+
# jwks-rsa for Java
2+
3+
[![Build Status](https://travis-ci.org/auth0/jwks-rsa-java.svg?branch=master)](https://travis-ci.org/auth0/jwks-rsa-java)
4+
[![Maven Central](https://img.shields.io/maven-central/v/com.auth0.android/lock.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%20com.auth0%20a%3Ajwks-rsa)
25

36
## Install
47

@@ -12,6 +15,12 @@
1215
</dependency>
1316
```
1417

18+
### Gradle
19+
20+
```gradle
21+
compile 'com.auth0:jwks-rsa:0.1.0'
22+
```
23+
1524
## Usage
1625

1726
### No Cache
@@ -64,3 +73,31 @@ JwkProvider provider = new JwkProviderBuilder()
6473
.build();
6574
Jwk jwk = provider.get("{kid of the signing key}"); //throws Exception when not found or can't get one
6675
```
76+
77+
## What is Auth0?
78+
79+
Auth0 helps you to:
80+
81+
* Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.
82+
* Add authentication through more traditional **[username/password databases](https://docs.auth0.com/mysql-connection-tutorial)**.
83+
* Add support for **[linking different user accounts](https://docs.auth0.com/link-accounts)** with the same user.
84+
* Support for generating signed [Json Web Tokens](https://docs.auth0.com/jwt) to call your APIs and **flow the user identity** securely.
85+
* Analytics of how, when and where users are logging in.
86+
* Pull data from other sources and add it to the user profile, through [JavaScript rules](https://docs.auth0.com/rules).
87+
88+
## Create a free Auth0 Account
89+
90+
1. Go to [Auth0](https://auth0.com) and click Sign Up.
91+
2. Use Google, GitHub or Microsoft Account to login.
92+
93+
## Issue Reporting
94+
95+
If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The [Responsible Disclosure Program](https://auth0.com/whitehat) details the procedure for disclosing security issues.
96+
97+
## Author
98+
99+
[Auth0](https://auth0.com)
100+
101+
## License
102+
103+
This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for more info.

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<groupId>com.auth0</groupId>
1212
<artifactId>jwks-rsa</artifactId>
1313
<packaging>jar</packaging>
14-
<version>0.0.1-SNAPSHOT</version>
14+
<version>0.1.0-SNAPSHOT</version>
1515
<name>jwks-rsa</name>
1616
<url>http://www.auth0.com</url>
1717

0 commit comments

Comments
 (0)
Please sign in to comment.