togglz-security-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.togglz</groupId> <artifactId>togglz-security-spring-boot-starter</artifactId> <version>4.4.0</version> </dependency>
<?xml version="1.0"?> <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>org.togglz</groupId> <artifactId>togglz-spring-boot</artifactId> <version>4.4.0</version> </parent> <artifactId>togglz-security-spring-boot-starter</artifactId> <name>Togglz Spring Security - Spring Boot Starter</name> <description>Togglz Spring Security - Spring Boot Starter</description> <dependencyManagement> <dependencies> <dependency> <!-- Import dependency management from Spring Boot --> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.togglz</groupId> <artifactId>togglz-spring-boot-autoconfigure</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.togglz</groupId> <artifactId>togglz-spring-security</artifactId> </dependency> <dependency> <groupId>org.togglz</groupId> <artifactId>togglz-spring-web</artifactId> </dependency> </dependencies> </project>