jwt-auth-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.hndrs</groupId> <artifactId>jwt-auth-spring-boot-starter</artifactId> <version>1.0.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 http://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>io.hndrs</groupId> <artifactId>jwt-auth-spring-boot-starter</artifactId> <version>1.0.0</version> <name>jwt-auth-spring-boot-starter</name> <description>Simple JWT Auth User Library</description> <url>https://github.com/hndrs/jwt-auth-spring-boot-starter</url> <organization> <name>hndrs</name> <url>https://oss.hndrs.io</url> </organization> <licenses> <license> <name>MIT License</name> <url>https://github.com/hndrs/jwt-auth-spring-boot-starter/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>marvinschramm</id> <name>Marvin Schramm</name> <email>marvin.schramm@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/hndrs/jwt-auth-spring-boot-starter</connection> <url>https://github.com/hndrs/jwt-auth-spring-boot-starter</url> </scm> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.nimbusds</groupId> <artifactId>nimbus-jose-jwt</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.4.30</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.4.30</version> <scope>runtime</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.4.2</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> </project>