DolphinScheduler/dolphinscheduler-bom
Wenjun Ruan 7ff34c3947
[Feature-7024] Add waiting strategy to support master/worker can recover from registry lost (#11368)
* Add waiting strategy to support master/worker can recover from registry lost

* throw exception when zookeeper registry start failed due to interrupted
2022-08-13 09:52:03 +08:00
..
pom.xml [Feature-7024] Add waiting strategy to support master/worker can recover from registry lost (#11368) 2022-08-13 09:52:03 +08:00
README.md Add dolphinscheduler-bom to manage the dependency version (#11025) 2022-07-20 10:37:31 +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.