Skip to content

Instantly share code, notes, and snippets.

@andreybleme
Last active April 1, 2017 18:54
Show Gist options
  • Save andreybleme/1a12be46452eb9170c30b2cbc2d1c9dd to your computer and use it in GitHub Desktop.
Save andreybleme/1a12be46452eb9170c30b2cbc2d1c9dd to your computer and use it in GitHub Desktop.
andreybleme.com | JWT com Springboot
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.7.0</version>
</dependency>
</dependencies>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment