xc-spring-boot-starter-security
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-security</artifactId> <version>0.0.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-parent</artifactId> <version>0.0.2</version> </parent> <artifactId>xc-spring-boot-starter-security</artifactId> <name>${project.artifactId}</name> <url>https://github.com/xiaochenxt/xc-spring-boot-starter-security</url> <description>token认证框架</description> <developers> <developer> <id>dc2024</id> <name>小郴</name> <email>876975281@qq.com</email> </developer> </developers> <scm> <url>https://github.com/xiaochenxt/xc-spring-boot-starter-security</url> <connection>https://github.com/xiaochenxt/xc-spring-boot-starter-security.git</connection> <developerConnection>https://github.com/xiaochenxt/xc-spring-boot-starter-security.git</developerConnection> </scm> <dependencies> <dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-core</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.fusionauth</groupId> <artifactId>fusionauth-jwt</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> </dependencies> </project>