elide-datastore-inmemorydb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-datastore-inmemorydb</artifactId> <version>7.1.11</version> </dependency>
<!-- ~ Copyright 2016, Yahoo Inc. ~ Licensed under the Apache License, Version 2.0 ~ See LICENSE file in project root for terms. --> <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-inmemorydb</artifactId> <packaging>jar</packaging> <name>Elide Data Store: In-Memory</name> <description>Elide data store for a demonstrative in-memory datastore support</description> <url>https://github.com/yahoo/elide</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> <properties> <dataStoreHarness>com.yahoo.elide.initialization.InMemoryDataStoreHarness</dataStoreHarness> <excludeTags>skipInMemory</excludeTags> </properties> <dependencies> <dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-core</artifactId> </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-test-helpers</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</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>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <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>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10-webapp</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <forkCount>1</forkCount> <reuseForks>true</reuseForks> <failIfNoTests>true</failIfNoTests> <excludedGroups>${excludeTags}</excludedGroups> </configuration> </plugin> </plugins> </build> </project>