jwt-auth-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.junsung</groupId> <artifactId>jwt-auth-spring-boot-starter</artifactId> <version>0.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>dev.junsung</groupId> <artifactId>jwt-auth-spring-boot-starter</artifactId> <version>0.1.0</version> <name>JWT Authorization Spring Boot Starter</name> <description>The "JWT Authorization Spring Boot Starter" is designed to simplify the implementation of JSON Web Token (JWT) based authentication and authorization within Spring Boot applications. This starter provides a robust foundation for developers looking to secure their Spring Boot applications using JWT, a widely adopted industry standard for token-based authentication.</description> <url>https://github.com/junsung-cho/jwt-auth-spring-boot-starter</url> <licenses> <license> <name>MIT License</name> <url>https://github.com/junsung-cho/jwt-auth-spring-boot-starter/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>junsung</id> <name>Junsung Cho</name> <email>junsung.dev@gmail.com</email> </developer> </developers> <scm> <url>https://github.com/junsung-cho/jwt-auth-spring-boot-starter.git</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>2.1.20</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>3.4.4</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId> <version>6.4.4</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-oauth2-jose</artifactId> <version>6.4.4</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> <version>6.4.4</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <version>2.18.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>6.1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.17</version> <scope>runtime</scope> </dependency> <dependency> <groupId>dev.junsung</groupId> <artifactId>exception</artifactId> <version>0.0.2</version> <scope>runtime</scope> </dependency> </dependencies> </project>