spring-filter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.turkraft</groupId> <artifactId>spring-filter</artifactId> <version>2.1.6</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.turkraft</groupId> <artifactId>spring-filter</artifactId> <name>${project.groupId}:${project.artifactId}</name> <version>2.1.6</version> <description>Dynamically filters JPA entities and MongoDB collections with a simple query syntax. Provides JPA/Hibernate predicates, Spring Data specifications, and MongoDB queries. Easily integrated with Spring APIs.</description> <url>https://github.com/torshid/spring-filter</url> <developers> <developer> <name>Yusuf Torshid</name> <email>torshid@gmail.com</email> <organization>Turkraft</organization> <organizationUrl>http://turkraft.com</organizationUrl> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/turkraft/spring-filter.git</connection> <developerConnection>scm:git:ssh://github.com:turkraft/spring-filter.git</developerConnection> <url>http://github.com/turkraft/spring-filter/tree/main</url> </scm> <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <plugins> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> <version>${antlr4-runtime.version}</version> <executions> <execution> <goals> <goal>antlr4</goal> </goals> </execution> </executions> <configuration> <visitor>true</visitor> <listener>false</listener> <libDirectory>src/main/antlr4</libDirectory> <outputDirectory>${project.build.directory}/generated-sources/antlr4/com/turkraft/springfilter/parser</outputDirectory> <arguments> <argument>-package</argument> <argument>com.turkraft.springfilter.parser</argument> </arguments> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${maven-shade-plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.antlr:antlr4-runtime</include> </includes> </artifactSet> </configuration> </execution> </executions> <configuration> <minimizeJar>true</minimizeJar> <createDependencyReducedPom>true</createDependencyReducedPom> <relocations> <relocation> <pattern>org.antlr</pattern> <shadedPattern>com.turkraft.springfilter.shaded.org.antlr</shadedPattern> </relocation> </relocations> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${springframework-boot.version}</version> <configuration> <mainClass>com.turkraft.springfilter.jpa.Application</mainClass> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>assembly</goal> </goals> <configuration> <archive> <manifest> <mainClass>com.turkraft.springfilter.jpa.Application</mainClass> </manifest> </archive> </configuration> </execution> </executions> <configuration> <descriptor>src/test/assembly/assembly.xml</descriptor> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>5.6.5.Final</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> <version>2.6.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-mongodb</artifactId> <version>3.3.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.3.15</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.15</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.8.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-platform-engine</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.8.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>2.6.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>spring-boot-starter</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>spring-boot-test</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>spring-boot-test-autoconfigure</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>json-path</artifactId> <groupId>com.jayway.jsonpath</groupId> </exclusion> <exclusion> <artifactId>jakarta.xml.bind-api</artifactId> <groupId>jakarta.xml.bind</groupId> </exclusion> <exclusion> <artifactId>assertj-core</artifactId> <groupId>org.assertj</groupId> </exclusion> <exclusion> <artifactId>hamcrest</artifactId> <groupId>org.hamcrest</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>mockito-core</artifactId> <groupId>org.mockito</groupId> </exclusion> <exclusion> <artifactId>mockito-junit-jupiter</artifactId> <groupId>org.mockito</groupId> </exclusion> <exclusion> <artifactId>jsonassert</artifactId> <groupId>org.skyscreamer</groupId> </exclusion> <exclusion> <artifactId>spring-test</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>xmlunit-core</artifactId> <groupId>org.xmlunit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.6.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>spring-boot-starter-json</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-tomcat</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.4.200</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> <version>2.6.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>mongodb-driver-sync</artifactId> <groupId>org.mongodb</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.13.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jackson-annotations</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> <exclusion> <artifactId>jackson-core</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>de.flapdoodle.embed</groupId> <artifactId>de.flapdoodle.embed.mongo</artifactId> <version>3.3.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>de.flapdoodle.embed.process</artifactId> <groupId>de.flapdoodle.embed</groupId> </exclusion> <exclusion> <artifactId>de.flapdoodle.os</artifactId> <groupId>de.flapdoodle</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.github.javafaker</groupId> <artifactId>javafaker</artifactId> <version>1.0.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>snakeyaml</artifactId> <groupId>org.yaml</groupId> </exclusion> <exclusion> <artifactId>generex</artifactId> <groupId>com.github.mifmif</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-ui</artifactId> <version>1.6.6</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>springdoc-openapi-webmvc-core</artifactId> <groupId>org.springdoc</groupId> </exclusion> <exclusion> <artifactId>swagger-ui</artifactId> <groupId>org.webjars</groupId> </exclusion> <exclusion> <artifactId>webjars-locator-core</artifactId> <groupId>org.webjars</groupId> </exclusion> <exclusion> <artifactId>classgraph</artifactId> <groupId>io.github.classgraph</groupId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <de.flapdoodle.embed.mongo.version>3.3.1</de.flapdoodle.embed.mongo.version> <springdoc-openapi-ui.version>1.6.6</springdoc-openapi-ui.version> <maven-compiler-plugin.version>3.9.0</maven-compiler-plugin.version> <springframework-boot.version>2.6.3</springframework-boot.version> <hibernate.version>5.6.5.Final</hibernate.version> <h2database-h2.version>1.4.200</h2database-h2.version> <spring-data-jpa.version>2.6.1</spring-data-jpa.version> <maven-javadoc-plugin.version>3.3.1</maven-javadoc-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <springframework.version>5.3.15</springframework.version> <antlr4-runtime.version>4.9.3</antlr4-runtime.version> <junit.version>5.8.2</junit.version> <spring-data-mongodb.version>3.3.1</spring-data-mongodb.version> <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version> <jackson-databind.version>2.13.1</jackson-databind.version> <java.version>1.8</java.version> <maven-shade-plugin.version>3.2.4</maven-shade-plugin.version> <commons-lang3.version>3.12.0</commons-lang3.version> <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> <javafaker.version>1.0.2</javafaker.version> </properties> </project>