authz-pdp-avp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.bigacl</groupId>
<artifactId>authz-pdp-avp</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-pdp-avp</artifactId>
<name>AuthZ PDP AVP</name>
<description>Amazon Verified Permissions PDP connector for AuthZ PEP</description>
<dependencies>
<!-- Core module -->
<dependency>
<groupId>com.bigacl</groupId>
<artifactId>authz-core</artifactId>
</dependency>
<!-- Autoconfigure module -->
<dependency>
<groupId>com.bigacl</groupId>
<artifactId>authz-spring-boot-autoconfigure</artifactId>
</dependency>
<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<!-- AWS SDK for Verified Permissions -->
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>verifiedpermissions</artifactId>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>