elide-datastore-multiplex
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-datastore-multiplex</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-multiplex</artifactId> <packaging>jar</packaging> <name>Elide Data Store: Multiplex Library</name> <description>Elide entity manager for multiple data store 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.datastores.multiplex.bridgeable.BridgeableDataStoreHarness</dataStoreHarness> </properties> <dependencies> <!-- Elide dependencies (include test dependencies) --> <dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <scope>test</scope> </dependency> <!-- Test dependencies --> <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>org.mockito</groupId> <artifactId>mockito-core</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> </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-failsafe-plugin</artifactId> <configuration> <skipITs>true</skipITs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <dataStoreHarness>${dataStoreHarness}</dataStoreHarness> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> </plugins> </build> </project>