rsql-querydsl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>team.yi.rsql</groupId> <artifactId>rsql-querydsl</artifactId> <version>1.10.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 https://maven.apache.org/xsd/maven-4.0.0.xsd" 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>team.yi.rsql</groupId> <artifactId>rsql-querydsl</artifactId> <version>1.10.0</version> <name>rsql-querydsl</name> <description>Integration RSQL query language and Querydsl framework.</description> <url>https://github.com/ymind/rsql-querydsl</url> <inceptionYear>2020</inceptionYear> <organization> <name>Yi.Team</name> <url>https://yi.team/</url> </organization> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>ymind</name> <email>ymind@yi.team</email> <url>https://yi.team/</url> <organization>Yi.Team</organization> <organizationUrl>https://yi.team/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:ymind/rsql-querydsl.git</connection> <developerConnection>scm:git:git@github.com:ymind/rsql-querydsl.git</developerConnection> <url>https://github.com/ymind/rsql-querydsl</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/ymind/rsql-querydsl/issues</url> </issueManagement> <ciManagement> <system>GitHub</system> <url>https://github.com/ymind/rsql-querydsl/actions</url> </ciManagement> <dependencies> <dependency> <groupId>javax.persistence</groupId> <artifactId>javax.persistence-api</artifactId> <version>2.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <version>3.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.querydsl</groupId> <artifactId>querydsl-jpa</artifactId> <version>5.0.0</version> <classifier>jakarta</classifier> <scope>compile</scope> </dependency> <dependency> <groupId>com.querydsl</groupId> <artifactId>querydsl-codegen</artifactId> <version>5.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>cz.jirutka.rsql</groupId> <artifactId>rsql-parser</artifactId> <version>2.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.8.22</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.8.22</version> <scope>runtime</scope> </dependency> </dependencies> </project>