|
1 | 1 | # HBase ORM |
2 | 2 |
|
3 | | -[](https://travis-ci.org/github/flipkart-incubator/hbase-orm) |
| 3 | +[](https://travis-ci.org/github/flipkart-incubator/hbase-orm) |
4 | 4 | [](https://lgtm.com/projects/g/flipkart-incubator/hbase-orm/context:java) |
5 | | -[](https://coveralls.io/github/flipkart-incubator/hbase-orm?branch=master) |
6 | | -[](https://oss.sonatype.org/content/repositories/releases/com/flipkart/hbase-object-mapper/1.18/) |
| 5 | +[](https://coveralls.io/github/flipkart-incubator/hbase-orm?branch=master) |
| 6 | +[](https://oss.sonatype.org/content/repositories/releases/com/flipkart/hbase-object-mapper/1.19/) |
7 | 7 | [](./LICENSE.txt) |
8 | 8 |
|
9 | 9 | ## Introduction |
@@ -401,27 +401,27 @@ If you are using Maven, add below entry within the `dependencies` section of you |
401 | 401 | <dependency> |
402 | 402 | <groupId>com.flipkart</groupId> |
403 | 403 | <artifactId>hbase-object-mapper</artifactId> |
404 | | - <version>1.18</version> |
| 404 | + <version>1.19</version> |
405 | 405 | </dependency> |
406 | 406 | ``` |
407 | 407 |
|
408 | 408 | See artifact details: [com.flipkart:hbase-object-mapper on **Maven Central**](https://search.maven.org/search?q=g:com.flipkart%20AND%20a:hbase-object-mapper&core=gav). |
409 | 409 |
|
410 | 410 | If you're using Gradle or Ivy or SBT, see how to include this library in your build: |
411 | | -[com.flipkart:hbase-object-mapper:1.18](https://mvnrepository.com/artifact/com.flipkart/hbase-object-mapper/1.18). |
| 411 | +[com.flipkart:hbase-object-mapper:1.19](https://mvnrepository.com/artifact/com.flipkart/hbase-object-mapper/1.19). |
412 | 412 |
|
413 | 413 | ## How to build? |
414 | 414 | To build this project, follow below simple steps: |
415 | 415 |
|
416 | 416 | 1. Do a `git clone` of this repository |
417 | | - 2. Checkout latest stable version `git checkout v1.18` |
| 417 | + 2. Checkout latest stable version `git checkout v1.19` |
418 | 418 | 3. Execute `mvn clean install` from shell |
419 | 419 |
|
420 | 420 | ### Please note: |
421 | 421 |
|
422 | 422 | * Currently, systems that use this library are running on HBase 2.0. However, if you are using a different version, just change the version in [pom.xml](./pom.xml) to the desired one and build the project. |
423 | 423 | * Test cases are **very comprehensive**. So, `mvn` build times can sometimes be longer, depending on your machine configuration. |
424 | | - * By default, test cases spin an [in-memory HBase test cluster](https://github.com/apache/hbase/blob/master/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java) to run data access related test cases (near-realworld scenario). |
| 424 | + * By default, test cases spin an [in-memory HBase test cluster](https://github.com/apache/hbase/blob/main/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java) to run data access related test cases (near-realworld scenario). |
425 | 425 | * If test cases are failing with time out errors, you may increase the timeout by setting environment variable `INMEMORY_CLUSTER_START_TIMEOUT` (seconds). For example, on Linux you may run the command `export INMEMORY_CLUSTER_START_TIMEOUT=8` on terminal, before running the aforementioned `mvn` command. |
426 | 426 | * You may direct test cases to use an actual HBase cluster (instead of default in-memory one) by setting `USE_REAL_HBASE` environmental variable to `true`. |
427 | 427 | * If you're using this option, ensure you've correct settings in your `hbase-site.xml`. |
|
0 commit comments