elide-dbmanager-inmemorydb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-dbmanager-inmemorydb</artifactId> <version>1.0.0.5</version> </dependency>
<!-- ~ Copyright 2015, 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-dbmanager-inmemorydb</artifactId> <packaging>jar</packaging> <name>Elide In-Memory Database Manager</name> <description>Elide database manager for a demonstrative in-memory db support</description> <url>https://github.com/yahoo/elide</url> <parent> <groupId>com.yahoo.elide</groupId> <artifactId>elide-dbmanager-parent-pom</artifactId> <version>1.0.0.5</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>1.0.0.5</tag> </scm> <dependencies> <dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-core</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>javax.persistence</groupId> <artifactId>persistence-api</artifactId> <version>1.0.2</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.10</version> </dependency> <!-- Jackson data-binder --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.6.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.6.3</version> </dependency> <!-- Test deps --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-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-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </build> </project>