Repository: incubator-tephra Updated Branches: refs/heads/master 66354786d -> 9f2113337
Fix tephra-examples inclusion in distribution tar.gz, and add build instructions to README Project: http://git-wip-us.apache.org/repos/asf/incubator-tephra/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tephra/commit/9f211333 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tephra/tree/9f211333 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tephra/diff/9f211333 Branch: refs/heads/master Commit: 9f21133378f5c6c5cd01f2027b03d969caff927e Parents: 6635478 Author: poorna <[email protected]> Authored: Mon Sep 12 20:47:41 2016 -0700 Committer: poorna <[email protected]> Committed: Mon Sep 12 20:47:41 2016 -0700 ---------------------------------------------------------------------- README.md | 9 +++++++++ tephra-distribution/pom.xml | 37 ++++++++++++++++++++++++++++++++++++- 2 files changed, 45 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tephra/blob/9f211333/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 2dc7d64..459cae7 100644 --- a/README.md +++ b/README.md @@ -30,3 +30,12 @@ to add cross-row and cross-table transaction support with full ACID semantics. Please refer to the [Getting Started](http://tephra.incubator.apache.org/GettingStarted.html) guide to start using [Apache Tephra](http://tephra.incubator.apache.org). + +## Building +You can build Tephra directly from the latest source code: + +```sh + git clone https://git-wip-us.apache.org/repos/asf/incubator-tephra.git + cd incubator-tephra + mvn clean package +``` http://git-wip-us.apache.org/repos/asf/incubator-tephra/blob/9f211333/tephra-distribution/pom.xml ---------------------------------------------------------------------- diff --git a/tephra-distribution/pom.xml b/tephra-distribution/pom.xml index d5816a2..195f6d3 100644 --- a/tephra-distribution/pom.xml +++ b/tephra-distribution/pom.xml @@ -70,7 +70,42 @@ </dependency> <dependency> <groupId>org.apache.tephra</groupId> - <artifactId>tephra-examples</artifactId> + <artifactId>tephra-examples-hbase-0.96</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.tephra</groupId> + <artifactId>tephra-examples-hbase-0.98</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.tephra</groupId> + <artifactId>tephra-examples-hbase-1.0</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.tephra</groupId> + <artifactId>tephra-examples-hbase-1.0-cdh</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.tephra</groupId> + <artifactId>tephra-examples-hbase-1.1</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.tephra</groupId> + <artifactId>tephra-examples-hbase-1.2</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.tephra</groupId> + <artifactId>tephra-examples-cdh-5.7</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.tephra</groupId> + <artifactId>tephra-examples-cdh-5.8</artifactId> <version>${project.version}</version> </dependency> </dependencies>
