authz-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.bigacl</groupId>
<artifactId>authz-spring-boot-starter</artifactId>
<version>0.1.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>com.bigacl</groupId>
<artifactId>authz-spring-boot-parent</artifactId>
<version>0.1.0</version>
</parent>
<artifactId>authz-spring-boot-starter</artifactId>
<name>AuthZ Spring Boot Starter</name>
<description>Spring Boot Starter for AuthZ PEP - Policy Enforcement Point with OPA, AVP, and AuthZEN support</description>
<dependencies>
<!-- Core module -->
<dependency>
<groupId>com.bigacl</groupId>
<artifactId>authz-core</artifactId>
</dependency>
<!-- Auto-configuration -->
<dependency>
<groupId>com.bigacl</groupId>
<artifactId>authz-spring-boot-autoconfigure</artifactId>
</dependency>
<!-- PDP Connectors (optional, user can choose which to include) -->
<dependency>
<groupId>com.bigacl</groupId>
<artifactId>authz-pdp-opa</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.bigacl</groupId>
<artifactId>authz-pdp-avp</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.bigacl</groupId>
<artifactId>authz-pdp-authzen</artifactId>
<optional>true</optional>
</dependency>
<!-- Spring Security -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<!-- Cache (Caffeine) -->
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
</dependency>
</dependencies>
</project>