elide-datastore-search
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-datastore-search</artifactId> <version>7.1.11</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>elide-datastore-search</artifactId> <packaging>jar</packaging> <name>Elide Data Store: Search Store</name> <description>Elide Data Store for Indexed Search</description> <url>https://github.com/yahoo/elide/tree/master/elide-datastore/elide-datastore-search</url> <parent> <groupId>com.yahoo.elide</groupId> <artifactId>elide-datastore-parent-pom</artifactId> <version>7.1.11</version> </parent> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Yahoo Inc.</name> <url>https://github.com/yahoo</url> </developer> </developers> <scm> <developerConnection>scm:git:ssh://git@github.com/yahoo/elide.git</developerConnection> <url>https://github.com/yahoo/elide.git</url> <tag>7.1.11</tag> </scm> <dependencies> <dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-core</artifactId> </dependency> <dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-test-helpers</artifactId> <scope>test</scope> </dependency> <!-- JPA --> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-core</artifactId> </dependency> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-mapper-orm-orm6</artifactId> </dependency> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-backend-lucene</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-integration-tests</artifactId> <version>7.1.11</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-datastore-jpa</artifactId> <version>7.1.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-servlet</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.inject</groupId> <artifactId>jersey-hk2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10-webapp</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> </plugins> </build> </project>