From dev-return-10658-apmail-gora-dev-archive=gora.apache.org@gora.apache.org Sat Jul 14 22:07:52 2018 Return-Path: X-Original-To: apmail-gora-dev-archive@www.apache.org Delivered-To: apmail-gora-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4A46A186FF for ; Sat, 14 Jul 2018 22:07:52 +0000 (UTC) Received: (qmail 66331 invoked by uid 500); 14 Jul 2018 22:07:52 -0000 Delivered-To: apmail-gora-dev-archive@gora.apache.org Received: (qmail 66267 invoked by uid 500); 14 Jul 2018 22:07:52 -0000 Mailing-List: contact dev-help@gora.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@gora.apache.org Delivered-To: mailing list dev@gora.apache.org Received: (qmail 65873 invoked by uid 99); 14 Jul 2018 22:07:51 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Jul 2018 22:07:51 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8CC7EE0614; Sat, 14 Jul 2018 22:07:50 +0000 (UTC) From: lewismc To: dev@gora.apache.org Reply-To: dev@gora.apache.org References: In-Reply-To: Subject: [GitHub] gora pull request #134: GORA-535 Add a data store for Apache Ignite Content-Type: text/plain Message-Id: <20180714220750.8CC7EE0614@git1-us-west.apache.org> Date: Sat, 14 Jul 2018 22:07:50 +0000 (UTC) Github user lewismc commented on a diff in the pull request: https://github.com/apache/gora/pull/134#discussion_r202523513 --- Diff: gora-ignite/pom.xml --- @@ -0,0 +1,182 @@ + + + + 4.0.0 + + + org.apache.gora + gora + 0.9-SNAPSHOT + ../ + + gora-ignite + bundle + + Apache Gora :: Ignite + http://gora.apache.org + The Apache Gora open source framework provides an in-memory data model and + persistence for big data. Gora supports persisting to column stores, key value stores, + document stores and RDBMSs, and analyzing the data with extensive Apache Hadoop MapReduce + support. + 2010 + + The Apache Software Foundation + http://www.apache.org/ + + + JIRA + https://issues.apache.org/jira/browse/GORA + + + Jenkins + https://builds.apache.org/job/Gora-trunk/ + + + + 2.4.0 + * + org.apache.gora.ignite*;version="${project.version}";-noimport:=true + + + + target + target/classes + ${project.artifactId}-${project.version} + target/test-classes + src/test/java + src/main/java + + + ${project.basedir}/src/test/resources + + **/* + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + ${build-helper-maven-plugin.version} + + + generate-sources + + add-source + + + + src/examples/java + + + + + + + + + + + + org.apache.gora + gora-core + + + + org.apache.gora + gora-core + test-jar + test + + + + + org.apache.ignite + ignite-core + ${ignite.version} + + + + commons-io + commons-io + + + + + jline + jline + 2.11 + test + + + + org.apache.zookeeper + zookeeper + test + + + + org.apache.avro + avro + + + + org.jdom + jdom + compile + + + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + javax.jms + jms + + + + + + + junit + junit + + + + org.apache.hadoop + hadoop-minicluster + + + + org.apache.ignite + ignite-indexing + 2.4.0 --- End diff -- Please move this up to the other ignite dependency. Also consider defining the version as a constant somewhere. ---