tupl-titan100-storage-backend
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>jp.classmethod</groupId> <artifactId>tupl-titan100-storage-backend</artifactId> <version>1.0.1</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"> <!-- # Copyright 2016 Classmethod, Inc. or its affiliates. All Rights Reserved. # Portions copyright 2014-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"). # You may not use this file except in compliance with the License. # A copy of the License is located at # # http://www.apache.org/licenses/LICENSE-2.0 # # or in the "license" file accompanying this file. This file is distributed # on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either # express or implied. See the License for the specific language governing # permissions and limitations under the License. BEGIN adaptation of: https://github.com/awslabs/dynamodb-titan-storage-backend/blob/1.0.0/pom.xml#L2 --> <modelVersion>4.0.0</modelVersion> <groupId>jp.classmethod</groupId> <artifactId>tupl-titan100-storage-backend</artifactId> <version>1.0.1</version> <packaging>jar</packaging> <name>Classmethod Tupl Storage Backend for Titan</name> <url>https://github.com/classmethod-aws/tupl-titan-storage-backend</url> <description>The Classmethod Tupl Storage Backend for Titan: Distributed Graph Database allows Titan graphs to use Tupl as a storage backend.</description> <scm> <connection>scm:git:git@github.com:classmethod/tupl-titan-storage-backend.git</connection> <developerConnection>scm:git:git@github.com:classmethod/tupl-titan-storage-backend.git</developerConnection> <url>git@github.com:classmethod/tupl-titan-storage-backend.git</url> <tag>titan1.0.0-${project.version}</tag> </scm> <organization> <name>Classmethod, Inc.</name> <url>http://classmethod.jp</url> </organization> <issueManagement> <url>https://github.com/classmethod/tupl-titan-storage-backend/issues</url> </issueManagement> <properties> <default.test.jvm.opts>-Xms256m -Xmx1280m -XX:+HeapDumpOnOutOfMemoryError</default.test.jvm.opts> <mem.jvm.opts>-Xms256m -Xmx768m -ea -XX:+HeapDumpOnOutOfMemoryError</mem.jvm.opts> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jdk.version>1.8</jdk.version> <titan.version>1.0.0</titan.version> <tinkerpop.version>3.0.1-incubating</tinkerpop.version> <tupl.version>v1.3.0</tupl.version> <dependency.plugin.version>2.10</dependency.plugin.version> <maven.assembly.plugin.version>2.5.5</maven.assembly.plugin.version> <maven.compiler.plugin.version>3.3</maven.compiler.plugin.version> <maven.surefire.version>2.18.1</maven.surefire.version> <maven.resources.plugin.version>2.7</maven.resources.plugin.version> <exec.maven.plugin.version>1.2</exec.maven.plugin.version> <nexus.staging.maven.plugin.version>1.6.7</nexus.staging.maven.plugin.version> <maven.source.plugin.version>3.0.0</maven.source.plugin.version> <maven.javadoc.plugin.version>2.10.3</maven.javadoc.plugin.version> <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version> <slf4j.version>1.7.12</slf4j.version> <opencsv.version>2.4</opencsv.version> <commons.logging.version>1.1.1</commons.logging.version> <hadoop.version>2.2.0</hadoop.version> <test.excluded.groups>com.thinkaurelius.titan.testcategory.MemoryTests,com.thinkaurelius.titan.testcategory.PerformanceTests,com.thinkaurelius.titan.testcategory.BrittleTests,com.thinkaurelius.titan.testcategory.UnorderedKeyStoreTests,com.thinkaurelius.titan.testcategory.SerialTests</test.excluded.groups> </properties> <developers> <developer> <name>Alexander Patrikalakis</name> <email>amcp@me.com</email> <organization>Classmethod, Inc.</organization> <organizationUrl>classmethod.jp</organizationUrl> <url>https://www.linkedin.com/in/amcpatrix/en</url> </developer> </developers> <inceptionYear>2016</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <!-- Libraries --> <dependencies> <dependency> <groupId>com.github.cojen</groupId> <artifactId>Tupl</artifactId> <version>${tupl.version}</version> </dependency> <dependency> <groupId>com.thinkaurelius.titan</groupId> <artifactId>titan-core</artifactId> <version>${titan.version}</version> </dependency> <dependency> <groupId>com.thinkaurelius.titan</groupId> <artifactId>titan-test</artifactId> <version>${titan.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.thinkaurelius.titan</groupId> <artifactId>titan-es</artifactId> <version>${titan.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>au.com.bytecode</groupId> <artifactId>opencsv</artifactId> <version>${opencsv.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> </dependency> <!-- Gremlin --> <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>gremlin-core</artifactId> <version>${tinkerpop.version}</version> </dependency> <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>gremlin-groovy</artifactId> <version>${tinkerpop.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>gremlin-test</artifactId> <version>${tinkerpop.version}</version> <scope>test</scope> </dependency> <!-- for Gremlin console --> <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>gremlin-console</artifactId> <version>${tinkerpop.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <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> <!-- Use the integration-tests profile below --> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven.resources.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${dependency.plugin.version}</version> <executions> <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> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.maven.plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>integration-tests</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.version}</version> <executions> <execution> <id>surefire-it</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <skip>false</skip> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>start-gremlin</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${exec.maven.plugin.version}</version> <executions> <execution> <phase>test</phase> <configuration> <executable>java</executable> <arguments> <argument>-cp</argument> <argument>${basedir}/target/dependencies/*${path.separator}${basedir}/target/tupl-titan100-storage-backend-${project.version}.jar</argument> <argument>org.apache.tinkerpop.gremlin.console.Console</argument> </arguments> </configuration> <goals> <goal>exec</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencyManagement> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>${commons.logging.version}</version> </dependency> </dependencies> </dependencyManagement> <!-- END adaptation of: https://github.com/awslabs/dynamodb-titan-storage-backend/blob/1.0.0/pom.xml#L339 --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> </project>