opa-datafilter-mongo-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.jferrater</groupId>
<artifactId>opa-datafilter-mongo-spring-boot-starter</artifactId>
<version>0.5.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.jferrater</groupId>
<artifactId>opa-datafilter-mongo-spring-boot-starter</artifactId>
<version>0.5.1</version>
<name>opa-datafilter-mongo-spring-boot-starter</name>
<description>Spring Boot library for enforcing authorization on data by filtering using Spring Data Mongo with the Open Policy Agent (OPA) partial evaluation feature through its compile API</description>
<url>https://github.com/jferrater/opa-data-filter-spring-boot-starter</url>
<inceptionYear>2020</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>jferrater</id>
<name>Joffry Ferrater</name>
<email>joffry.ferrater@gmail.com</email>
</developer>
<developer>
<id>mongkoy</id>
<name>Reihmon Estremos</name>
<email>koydaut@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:https://github.com/jferrater/opa-data-filter-spring-boot-starter.git</connection>
<developerConnection>scm:https://github.com/jferrater/opa-data-filter-spring-boot-starter.git</developerConnection>
<url>https://github.com/jferrater/opa-data-filter-spring-boot-starter</url>
</scm>
<dependencies>
<dependency>
<groupId>com.github.jferrater</groupId>
<artifactId>opa-datafilter-core</artifactId>
<version>0.5.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>junit-vintage-engine</artifactId>
<groupId>org.junit.vintage</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>de.flapdoodle.embed</groupId>
<artifactId>de.flapdoodle.embed.mongo</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.12.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.2.6.RELEASE</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
</project>