jpa-search-helper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>app.tozzi</groupId> <artifactId>jpa-search-helper</artifactId> <version>3.4.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>app.tozzi</groupId> <artifactId>jpa-search-helper</artifactId> <version>3.4.5</version> <name>JPA Search Helper</name> <description>Library for building and running advanced and dynamic queries using JPA in Spring Boot.</description> <url>https://www.tozzi.app</url> <licenses> <license> <name>Mozilla Public License 2.0</name> <url>https://www.mozilla.org/en-US/MPL/2.0/</url> </license> </licenses> <developers> <developer> <id>biagio.tozzi</id> <name>Biagio Placido Tozzi</name> <email>biagio.tozzi@gmail.com</email> <url>https://www.tozzi.app</url> </developer> </developers> <scm> <connection>scm:git:git://github.com:biagioT/jpa-search-helper.git</connection> <developerConnection>scm:git:ssh://github.com:biagioT/jpa-search-helper.git</developerConnection> <url>https://github.com/biagioT/jpa-search-helper/tree/main</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>3.4.5</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.17.0</version> <scope>runtime</scope> </dependency> </dependencies> </project>