Skip to content

Commit fdf4eff

Browse files
committed
Added JWT rest
1 parent 9a69df3 commit fdf4eff

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

spring-security-jwt/build.gradle

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,22 @@ repositories {
2222
}
2323

2424
dependencies {
25+
implementation 'org.springframework.boot:spring-boot-starter-web'
26+
implementation 'org.springframework.boot:spring-boot-starter-actuator'
27+
28+
implementation("com.auth0:java-jwt:4.4.0")
2529
implementation 'org.springframework.boot:spring-boot-starter-security'
30+
2631
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
27-
implementation 'org.springframework.boot:spring-boot-starter-web'
2832
implementation 'com.mysql:mysql-connector-j:8.3.0'
29-
implementation 'org.springframework.boot:spring-boot-starter-actuator'
3033

31-
// implementation 'org.springframework.boot:spring-boot-starter-mail'
3234
compileOnly 'org.projectlombok:lombok'
3335
annotationProcessor 'org.projectlombok:lombok'
36+
3437
testImplementation 'org.springframework.boot:spring-boot-starter-test'
3538
testImplementation 'org.springframework.security:spring-security-test'
36-
3739
implementation 'javax.validation:validation-api:2.0.1.Final'
3840

39-
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
40-
41-
// compileOnly 'javax.servlet:servlet-api:2.3'
42-
// compileOnly 'javax.servlet:javax.servlet-api:3.0.1'
43-
// implementation("org.passay:passay:1.6.4")
44-
implementation("com.auth0:java-jwt:4.4.0")
45-
// runtimeOnly("com.h2database:h2")
4641
}
4742

4843
tasks.named('test') {

0 commit comments

Comments
 (0)