camunda-bpm-spring-boot-starter-security
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-security</artifactId> <version>7.23.0</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>org.camunda.bpm.springboot.project</groupId> <artifactId>camunda-bpm-spring-boot-starter-root</artifactId> <version>7.23.0</version> </parent> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-security</artifactId> <name>Camunda Platform - Spring Boot Starter - Spring Security</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>camunda-bpm-spring-boot-starter</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <!-- spring security dependencies --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-oauth2-client</artifactId> </dependency> <dependency> <artifactId>camunda-bpm-spring-boot-starter-test</artifactId> <groupId>${project.groupId}</groupId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents.client5</groupId> <artifactId>httpclient5</artifactId> <version>${version.httpclient5}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.camunda.commons</groupId> <artifactId>camunda-commons-testing</artifactId> <version>${version}</version> <scope>test</scope> </dependency> </dependencies> </project>