infinispan-query
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-query</artifactId> <version>15.2.1.Final</version> </dependency>
<?xml version='1.0' encoding='UTF-8'?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.infinispan</groupId> <artifactId>infinispan-parent</artifactId> <version>15.2.1.Final</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>infinispan-query</artifactId> <name>Infinispan Query</name> <description>Infinispan Query module</description> <properties> <infinispan.test.parallel.threads>5</infinispan.test.parallel.threads> </properties> <dependencies> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-core</artifactId> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-query-dsl</artifactId> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-query-core</artifactId> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-objectfilter</artifactId> </dependency> <dependency> <groupId>org.infinispan.protostream</groupId> <artifactId>protostream-processor</artifactId> </dependency> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-v5migrationhelper-engine</artifactId> </dependency> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-mapper-pojo-base</artifactId> </dependency> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-backend-lucene</artifactId> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-component-processor</artifactId> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-cachestore-jdbc</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr-runtime</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.support</groupId> <artifactId>testng-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.kohsuke.metainf-services</groupId> <artifactId>metainf-services</artifactId> </dependency> <dependency> <groupId>io.projectreactor.tools</groupId> <artifactId>blockhound</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-bmunit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.latencyutils</groupId> <artifactId>LatencyUtils</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.hdrhistogram</groupId> <artifactId>HdrHistogram</artifactId> </exclusion> </exclusions> </dependency> <dependency> <artifactId>HdrHistogram</artifactId> <groupId>org.hdrhistogram</groupId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>${project.basedir}/src/main/resources</directory> </resource> </resources> <testResources> <!-- Make sure the filtering is disabled for binary data, otherwise the files get "corrupted" --> <testResource> <directory>${project.basedir}/src/test/resources</directory> <filtering>false</filtering> <excludes> <exclude>**/*.xml</exclude> <exclude>**/*.yaml</exclude> <exclude>**/*.json</exclude> <exclude>**/*.properties</exclude> <exclude>**/*.MF</exclude> </excludes> </testResource> <testResource> <directory>${project.basedir}/src/test/resources</directory> <filtering>true</filtering> <includes> <include>**/*.xml</include> <include>**/*.yaml</include> <include>**/*.json</include> <include>**/*.properties</include> <include>**/*.MF</include> </includes> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>${forkJvmArgs} ${testjvm.jdkSpecificArgs} -Djdk.attach.allowAttachSelf=true</argLine> </configuration> </plugin> <plugin> <groupId>org.infinispan.protostream</groupId> <artifactId>proto-schema-compatibility-maven-plugin</artifactId> <executions> <execution> <goals> <goal>proto-schema-compatibility-check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>smoke</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- explicitly exclude some tests because of TestNG issue which ignores restricted groups in subclasses --> <includes> <include>**/LocalCacheTest.java</include> <include>**/QueryDslConditionsTest.java</include> <include>**/QueryStringTest.java</include> </includes> <dependenciesToScan> <!-- TestNGSuiteChecksTest --> <dependency>org.infinispan:infinispan-commons-test</dependency> </dependenciesToScan> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>