dynamodb-janusgraph-storage-backend
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.pontusvision</groupId> <artifactId>dynamodb-janusgraph-storage-backend</artifactId> <version>100-3.0</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.pontusvision</groupId> <artifactId>dynamodb-janusgraph-storage-backend</artifactId> <name>Amazon DynamoDB Storage Backend for JanusGraph</name> <version>100-3.0</version> <description>The Amazon DynamoDB Storage Backend for JanusGraph: This is an updated version that works with a later version of JanusGraph Distributed Graph Database allows JanusGraph graphs to use DynamoDB as a storage backend.</description> <url>https://github.com/pontusvision/pontus-dynamodb-janusgraph-storage-backend</url> <inceptionYear>2014</inceptionYear> <developers> <developer> <name>Alexander Patrikalakis</name> <email>amcp@mit.edu</email> <url>https://www.linkedin.com/in/amcpatrix/en</url> </developer> <developer> <name>Matthew Sowders</name> <email>matthewsowders@gmail.com</email> <url>https://www.linkedin.com/in/matthewsowders/en</url> </developer> <developer> <name>Michael Rodaitis</name> <email>mrodaitis@gmail.com</email> </developer> </developers> <contributors> <contributor> <name>Zameer Merali</name> <email>zmerali@amazon.com</email> </contributor> <contributor> <name>Justin Panian</name> <email>panianj@amazon.com</email> </contributor> <contributor> <name>Addison Slabaugh</name> <email>acs254@cornell.edu</email> </contributor> <contributor> <name>John Stephenson</name> </contributor> <contributor> <name>Johan Jacobs</name> <email>johanjcbs@gmail.com</email> <url>https://www.linkedin.com/in/johanjcbs/</url> </contributor> <contributor> <name>Daniel Jue</name> <email>djue@phy6.net</email> </contributor> </contributors> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>git@github.com:pontusvision/pontus-dynamodb-janusgraph-storage-backend.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>1.3.1</version> <executions> <execution> <id>enforce-dependency-convergence</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <DependencyConvergence /> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <goals>javadoc:aggregate deploy</goals> <pushChanges>false</pushChanges> <tagNameFormat>@{project.version}</tagNameFormat> <releaseProfiles>janusgraph-release</releaseProfiles> <useReleaseProfile>false</useReleaseProfile> <autoVersionSubmodules>true</autoVersionSubmodules> <arguments>-DskipTests=true</arguments> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <transformers> <transformer /> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.4</version> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <effort>Max</effort> <threshold>Low</threshold> <xmlOutput>true</xmlOutput> </configuration> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.17</version> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> <configuration> <configLocation>checkstyle.xml</configLocation> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> <version>3.8</version> <executions> <execution> <goals> <goal>check</goal> <goal>cpd-check</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>${dependency.plugin.version}</version> <executions> <execution> <id>analyze</id> <goals> <goal>analyze-only</goal> </goals> <configuration> <failOnWarning>true</failOnWarning> <ignoreNonCompile>true</ignoreNonCompile> <ignoredDependencies> <ignoredDependency>org.projectlombok:lombok:jar:${lombok.version}</ignoredDependency> </ignoredDependencies> </configuration> </execution> <execution> <id>copy-dependencies</id> <phase>process-test-resources</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/dependencies</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>false</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.version}</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven.resources.plugin.version}</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <id>enforce</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <dependencyConvergence /> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>janusgraph-release</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <quiet>true</quiet> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>package</phase> <goals> <goal>sign</goal> </goals> <configuration> <useAgent>true</useAgent> <skip>${gpg.skip}</skip> <excludes> <exclude>*.asc</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>dynamodb-janusgraph-docker</id> <build> <pluginManagement> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>${docker.maven.version}</version> <configuration> <dockerDirectory>${project.basedir}/src/test/resources/dynamodb-janusgraph-docker</dockerDirectory> <buildArgs> <server_zip>dynamodb-janusgraph-storage-backend-${project.version}.zip</server_zip> </buildArgs> <forceTags>true</forceTags> <imageName>dynamodb-janusgraph/server</imageName> <imageTags> <imageTag>${project.version}</imageTag> </imageTags> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> <profile> <id>integration-tests</id> <build> <plugins> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <version>${download.maven.plugin.version}</version> <executions> <execution> <id>install-dynamodb-local</id> <phase>pre-integration-test</phase> <goals> <goal>wget</goal> </goals> <configuration> <url>https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.zip</url> <unpack>true</unpack> <outputDirectory>${project.build.directory}/dynamodb</outputDirectory> <skipCache>${download.skip.cache}</skipCache> <overwrite>${download.force.overwrite}</overwrite> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.bazaarvoice.maven.plugins</groupId> <artifactId>process-exec-maven-plugin</artifactId> <version>0.4</version> <executions> <execution> <id>dynamodb-local</id> <phase>pre-integration-test</phase> <goals> <goal>start</goal> </goals> <configuration> <name>dynamodb-local</name> <waitAfterLaunch>1</waitAfterLaunch> <arguments> <argument>java</argument> <argument>-Djava.library.path=dynamodb/DynamoDBLocal_lib</argument> <argument>-jar</argument> <argument>dynamodb/DynamoDBLocal.jar</argument> <argument>-inMemory</argument> <argument>-port</argument> <argument>${dynamodb-local.port}</argument> <argument>-sharedDb</argument> </arguments> </configuration> </execution> <execution> <id>stop-jar-process</id> <phase>post-integration-test</phase> <goals> <goal>stop-all</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven.failsafe.version}</version> <executions> <execution> <id>default-integration-tests</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <excludedGroups>${test.excluded.groups},${exclude.category}</excludedGroups> <includes> <include>${include.category}</include> </includes> <skip>false</skip> <systemPropertyVariables> <dynamodb-partitions>1</dynamodb-partitions> <dynamodb-control-plane-rate>10000</dynamodb-control-plane-rate> <dynamodb-unlimited-iops>true</dynamodb-unlimited-iops> <properties-file>src/test/resources/dynamodb-local.properties</properties-file> <dynamo.endpoint>${dynamodb-local.endpoint}</dynamo.endpoint> </systemPropertyVariables> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>download-janusgraph-server-zip</id> <build> <plugins> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <version>${download.maven.plugin.version}</version> <executions> <execution> <id>download-janusgraph-server-zip</id> <goals> <goal>wget</goal> </goals> <configuration> <url>https://github.com/pontusvision/pontus-janusgraph/releases/download/v${janusgraph.version}/janusgraph-${janusgraph.version}-hadoop2.zip</url> <unpack>false</unpack> <outputDirectory>${project.build.directory}/../server</outputDirectory> <skipCache>${download.skip.cache}</skipCache> <overwrite>${download.force.overwrite}</overwrite> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>start-dynamodb-local</id> <build> <plugins> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <version>${download.maven.plugin.version}</version> <executions> <execution> <id>install-dynamodb_local</id> <goals> <goal>wget</goal> </goals> <configuration> <url>https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.zip</url> <unpack>true</unpack> <outputDirectory>${project.build.directory}/dynamodb</outputDirectory> <skipCache>${download.skip.cache}</skipCache> <overwrite>${download.force.overwrite}</overwrite> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${exec.maven.plugin.version}</version> <executions> <execution> <phase>test</phase> <goals> <goal>exec</goal> </goals> <configuration> <workingDirectory>${project.build.directory}/dynamodb</workingDirectory> <executable>java</executable> <arguments> <argument>-Djava.library.path=${project.build.directory}/dynamodb/DynamoDBLocal_lib</argument> <argument>-jar</argument> <argument>${project.build.directory}/dynamodb/DynamoDBLocal.jar</argument> <argument>-inMemory</argument> <argument>-port</argument> <argument>${dynamodb-local.port}</argument> <argument>-sharedDb</argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>com.pontusvision</groupId> <artifactId>janusgraph-test</artifactId> <version>100-3.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>gremlin-test</artifactId> <groupId>org.apache.tinkerpop</groupId> </exclusion> <exclusion> <artifactId>gremlin-driver</artifactId> <groupId>org.apache.tinkerpop</groupId> </exclusion> <exclusion> <artifactId>gremlin-server</artifactId> <groupId>org.apache.tinkerpop</groupId> </exclusion> <exclusion> <artifactId>commons-math</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>junit-benchmarks</artifactId> <groupId>com.carrotsearch</groupId> </exclusion> <exclusion> <artifactId>randomizedtesting-runner</artifactId> <groupId>com.carrotsearch.randomizedtesting</groupId> </exclusion> <exclusion> <artifactId>easymock</artifactId> <groupId>org.easymock</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.12</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.10.19</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.10.19</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-cbor</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commonsio.version}</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.2</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.7</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.3</version> </dependency> <dependency> <groupId>com.codahale.metrics</groupId> <artifactId>metrics-core</artifactId> <version>${metrics3.version}</version> </dependency> <dependency> <groupId>com.codahale.metrics</groupId> <artifactId>metrics-graphite</artifactId> <version>${metrics3.version}</version> </dependency> <dependency> <groupId>com.codahale.metrics</groupId> <artifactId>metrics-ganglia</artifactId> <version>${metrics3.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>com.carrotsearch</groupId> <artifactId>junit-benchmarks</artifactId> <version>0.7.0</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <tinkerpop.version>3.3.4</tinkerpop.version> <maven.surefire.version>2.20</maven.surefire.version> <junit.version>4.12</junit.version> <janusgraph.version>100-3.0</janusgraph.version> <default.test.jvm.opts>-Xms256m -Xmx1280m -XX:+HeapDumpOnOutOfMemoryError</default.test.jvm.opts> <jdk.version>1.8</jdk.version> <dynamodb-local.endpoint>http://localhost:${dynamodb-local.port}</dynamodb-local.endpoint> <download.maven.plugin.version>1.2.1</download.maven.plugin.version> <dependency.plugin.version>3.0.2</dependency.plugin.version> <maven-enforcer-plugin.version>3.0.0-M1</maven-enforcer-plugin.version> <lombok.version>1.16.18</lombok.version> <jackson.version>2.6.6</jackson.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <test.excluded.groups>org.janusgraph.testcategory.MemoryTests,org.janusgraph.testcategory.PerformanceTests,org.janusgraph.testcategory.BrittleTests,org.janusgraph.testcategory.OrderedKeyStoreTests,org.janusgraph.testcategory.SerialTests</test.excluded.groups> <maven.resources.plugin.version>3.0.2</maven.resources.plugin.version> <dynamodb-local.port>4567</dynamodb-local.port> <mockito.version>1.10.19</mockito.version> <hadoop.version>2.2.0</hadoop.version> <docker.maven.version>0.4.13</docker.maven.version> <opencsv.version>3.8</opencsv.version> <maven.assembly.plugin.version>3.1.0</maven.assembly.plugin.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.plugin.version>3.6.2</maven.compiler.plugin.version> <aws.java.sdk.version>1.11.539</aws.java.sdk.version> <commons.logging.version>1.1.1</commons.logging.version> <maven.failsafe.version>2.20</maven.failsafe.version> <commonsio.version>2.3</commonsio.version> <download.skip.cache>false</download.skip.cache> <slf4j.version>1.7.12</slf4j.version> <download.force.overwrite>false</download.force.overwrite> <mem.jvm.opts>-Xms256m -Xmx768m -ea -XX:+HeapDumpOnOutOfMemoryError</mem.jvm.opts> <guava.version>18.0</guava.version> <metrics3.version>3.0.1</metrics3.version> <exec.maven.plugin.version>1.6.0</exec.maven.plugin.version> </properties> </project>