Skip to content

Commit ec9d387

Browse files
committed
Version 1.19; Renamed 'master' to 'main';
1 parent 33c2e60 commit ec9d387

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# HBase ORM
22

3-
[![Build Status](https://api.travis-ci.org/flipkart-incubator/hbase-orm.svg?branch=master&status=passed)](https://travis-ci.org/github/flipkart-incubator/hbase-orm)
3+
[![Build Status](https://api.travis-ci.org/flipkart-incubator/hbase-orm.svg?branch=main&status=passed)](https://travis-ci.org/github/flipkart-incubator/hbase-orm)
44
[![Language grade: Java](https://img.shields.io/lgtm/grade/java/g/flipkart-incubator/hbase-orm.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/flipkart-incubator/hbase-orm/context:java)
5-
[![Coverage Status](https://coveralls.io/repos/github/flipkart-incubator/hbase-orm/badge.svg?branch=master)](https://coveralls.io/github/flipkart-incubator/hbase-orm?branch=master)
6-
[![Maven Central](https://img.shields.io/badge/sonatype-1.18-blue.svg)](https://oss.sonatype.org/content/repositories/releases/com/flipkart/hbase-object-mapper/1.18/)
5+
[![Coverage Status](https://coveralls.io/repos/github/flipkart-incubator/hbase-orm/badge.svg?branch=main)](https://coveralls.io/github/flipkart-incubator/hbase-orm?branch=master)
6+
[![Maven Central](https://img.shields.io/badge/sonatype-1.19-blue.svg)](https://oss.sonatype.org/content/repositories/releases/com/flipkart/hbase-object-mapper/1.19/)
77
[![License](https://img.shields.io/badge/License-Apache%202-blue.svg)](./LICENSE.txt)
88

99
## Introduction
@@ -401,27 +401,27 @@ If you are using Maven, add below entry within the `dependencies` section of you
401401
<dependency>
402402
<groupId>com.flipkart</groupId>
403403
<artifactId>hbase-object-mapper</artifactId>
404-
<version>1.18</version>
404+
<version>1.19</version>
405405
</dependency>
406406
```
407407

408408
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).
409409

410410
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).
412412

413413
## How to build?
414414
To build this project, follow below simple steps:
415415

416416
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`
418418
3. Execute `mvn clean install` from shell
419419

420420
### Please note:
421421

422422
* 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.
423423
* 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).
425425
* 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.
426426
* 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`.
427427
* If you're using this option, ensure you've correct settings in your `hbase-site.xml`.

0 commit comments

Comments
 (0)