-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add omniop-openlookeng-extension README.md
- Loading branch information
Showing
1 changed file
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
# omniop-openlookeng-extension | ||
# How to build omniop-openlookeng-extension | ||
The project depends on pieces of `hetu-core` and `boostkit-omniop-bindings`, which are recommended to deployed beforehand. `hetu-core` is available in the central repo, and this project requests the version >= `1.6.1`. Thus, you only need to | ||
get `boostkit-omniop-bindings-1.0.0.jar` from [Link](https://www.hikunpeng.com/en/developer/boostkit/big-data?acclerated=3), and install it in your maven repository as follows: | ||
|
||
``` | ||
mvn install:install-file -DgroupId=com.huawei.boostkit -DartifactId=boostkit-omniop-bindings -Dversion=1.0.0 -Dpackaging=jar -Dfile=boostkit-omniop-bindings-1.0.0.jar | ||
``` | ||
|
||
Then, you can build omniop-openlookeng-extension as follows: | ||
``` | ||
git clone https://github.com/kunpengcompute/boostkit-bigdata.git | ||
cd ./boostkit-bigdata/omnioperator/omniop-openlookeng-extension | ||
mvn clean install -DskipTests | ||
``` |