authentication method done

This commit is contained in:
sumedh
2024-08-08 13:19:44 +05:30
parent 0ce79eca38
commit a6b4030141
15 changed files with 532 additions and 0 deletions

21
pom.xml
View File

@@ -98,6 +98,27 @@
<version>6.8.0.202311291450-r</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.11.5</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.11.5</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.11.5</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
</dependencies>
<build>