DolphinScheduler/dolphinscheduler-bom
v-wx-v 4013b0679d [improvement][install.sh] fix the install Error "Command not found rmr" & su… (#13163)
* [BUG][install.sh] fix the install Error "Command not found rmr"  & support ZooKeeper (3.4.6+)

* [BUG][install.sh] fix the install Error "Command not found rmr"  & support ZooKeeper (3.4.6+)

* [BUG][install.sh] fix the install Error "Command not found rmr"  & support ZooKeeper (3.4.6+)

* [docs] add documentation for building with different ZK versions
* support both 3.4 and 3.8

* [docs] add documentation for building with different ZK versions
* support both 3.4 and 3.8

* [improvement][install.sh] fix the install Error "Command not found rmr" &  support ZooKeeper (3.4.6+)
* update known-dependencies.txt

* [improvement][install.sh] fix the install Error "Command not found rmr"
* support ZooKeeper (3.4.6+) by activating zk-3.4 profile
* make zk-3.8 as default option in pom.xml
* update defalut ZK version in docs
* update known-dependencies.txt

Co-authored-by: wangxx <wangxx@kcwl.com>
2023-02-21 11:35:53 +08:00
..
pom.xml [improvement][install.sh] fix the install Error "Command not found rmr" & su… (#13163) 2023-02-21 11:35:53 +08:00
README.md [Cherry-Pick][3.1.0-Prepare] Cherry pick docs format fix for 3.1.0 (#12095) 2022-09-22 14:11:43 +08:00

Introduction

The dolphinscheduler-bom module is used to manage the version of third part dependencies. If you want to import dolphinscheduler-xx to your project, you need to import dolphinscheduler-bom together by below way, this can help you to manage the version.

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.apache.dolphinscheduler</groupId>
            <artifactId>dolphinscheduler-bom</artifactId>
            <version>${dolphinscheduler.version}</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

If you want to override the version defined in dolphinscheduler-bom you can directly add the version at your module's dependencyManagement.