spring-boot-starter-security
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.luues.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> <version>2.0.1.RELEASE</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.luues.boot</groupId> <artifactId>boot-parent</artifactId> <version>2.0.1.RELEASE</version> </parent> <groupId>com.github.luues.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> <version>2.0.1.RELEASE</version> <name>${project.artifactId}</name> <description>身份凭证的生成及验证封装(jwt、token、session共享三种方式)</description> <url>https://github.com/luues/boot/tree/master/${project.name}</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <jedis-version>3.4.0</jedis-version> <jwt-version>0.9.1</jwt-version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.github.luues.boot</groupId> <artifactId>spring-boot-starter-pom</artifactId> <version>${project.parent.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> </dependency> <dependency> <groupId>org.springframework.retry</groupId> <artifactId>spring-retry</artifactId> </dependency> <dependency> <groupId>com.github.luues.boot</groupId> <artifactId>spring-boot-starter-exception</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>com.github.luues.boot</groupId> <artifactId>spring-boot-starter-jedis</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>org.springframework.session</groupId> <artifactId>spring-session-data-redis</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <dependency> <groupId>org.thymeleaf.extras</groupId> <artifactId>thymeleaf-extras-springsecurity5</artifactId> </dependency> <dependency> <groupId>org.xerial</groupId> <artifactId>sqlite-jdbc</artifactId> <version>3.34.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> <version>${jwt-version}</version> </dependency> <dependency> <groupId>com.github.luues.tool</groupId> <artifactId>tool-http</artifactId> </dependency> <dependency> <groupId>com.github.luues.tool</groupId> <artifactId>tool-log</artifactId> </dependency> </dependencies> <build> <finalName>${project.name}</finalName> </build> </project>