#8: fixing Gradle block to be color coded

This commit is contained in:
Les Hazlewood 2014-11-19 19:33:29 -08:00
parent 125acae4d9
commit e9758ca18d
1 changed files with 7 additions and 3 deletions

View File

@ -8,7 +8,9 @@ JJWT is a 'clean room' implementation based solely on the [JWT](https://tools.ie
## Installation
Use your favorite Maven-compatible build tool to pull the dependency (and its transitive dependencies) from Maven Central:
Use your favorite Maven-compatible build tool to pull the dependency (and its transitive dependencies) from Maven Central.
Maven:
```xml
<dependency>
@ -17,8 +19,10 @@ Use your favorite Maven-compatible build tool to pull the dependency (and its tr
<version>0.4</version>
</dependency>
```
gradle:
```
Gradle:
```groovy
dependencies {
compile 'io.jsonwebtoken:jjwt:0.4'
}