ypp-jwt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.paopaoyue</groupId> <artifactId>ypp-jwt</artifactId> <version>1.0.2</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"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.paopaoyue</groupId> <artifactId>ypp-jwt</artifactId> <version>1.0.2</version> <name>ypp-jwt</name> <description>A simple JWT authorization framework for Spring Boot applications.</description> <url>https://github.com/PaoPaoYue/ypp-jwt</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <id>ypp</id> <name>Yue Peng</name> <email>paopaoyue.cn@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:PaoPaoYue/ypp-jwt.git</connection> <developerConnection>scm:git:git@github.com:PaoPaoYue/ypp-jwt.git</developerConnection> <url>git@github.com:PaoPaoYue/ypp-jwt.git</url> </scm> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>3.10.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>29.0-jre</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-vintage-engine</artifactId> <groupId>org.junit.vintage</groupId> </exclusion> </exclusions> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.3.4.RELEASE</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> </project>