spring-data-specification-builder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.kirekov</groupId> <artifactId>spring-data-specification-builder</artifactId> <version>0.2.0</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.kirekov</groupId> <artifactId>spring-data-specification-builder</artifactId> <version>0.2.0</version> <name>spring-data-specification-builder</name> <description>Spring boot library that provides fluent API to define and compose specifications for data querying</description> <url>https://github.com/SimonHarmonicMinor/spring-data-specification-builder</url> <inceptionYear>2020</inceptionYear> <licenses> <license> <name>MIT License</name> <url>https://www.mit.edu/~amini/LICENSE.md</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>kirekov</id> <name>Semyon Kirekov</name> <email>semyon@kirekov.com</email> </developer> </developers> <scm> <connection>scm:https://github.com/SimonHarmonicMinor/spring-data-specification-builder.git</connection> <developerConnection>scm:git://github.com/SimonHarmonicMinor/spring-data-specification-builder.git</developerConnection> <url>https://github.com/SimonHarmonicMinor/spring-data-specification-builder</url> </scm> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <version>2.2.3</version> <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>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.3.4.RELEASE</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> </project>