infinispan-remote-query-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-remote-query-client</artifactId> <version>16.0.0.Dev01</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>16.0.0.Dev01</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>infinispan-remote-query-client</artifactId> <name>Infinispan Remote Query Client</name> <description>Infinispan Remote Query common classes between client and server</description> <dependencies> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons</artifactId> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-jboss-marshalling</artifactId> </dependency> <dependency> <groupId>org.infinispan.protostream</groupId> <artifactId>protostream</artifactId> </dependency> <dependency> <groupId>org.infinispan.protostream</groupId> <artifactId>protostream-processor</artifactId> </dependency> <dependency> <groupId>org.infinispan.protostream</groupId> <artifactId>protostream-types</artifactId> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <parallel>classes</parallel> <groups combine.self="override">${defaultJUnitGroups}</groups> <excludedGroups combine.self="override">${defaultExcludedJUnitGroups}</excludedGroups> <disableXmlReport>false</disableXmlReport> <trimStackTrace>false</trimStackTrace> <properties> <!-- Deactivate the default listeners which may cause OOME. Jenkins uses the surefire generated XML file. --> <usedefaultlisteners>false</usedefaultlisteners> <listener>${junitListener}</listener> </properties> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit47</artifactId> <version>${version.maven.surefire}</version> </dependency> </dependencies> </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> </project>