DolphinScheduler/dolphinscheduler-bom
Tq 3efe4bc308 [BUG][BE-12113]fix htrace dependency conflicts (#12126)
* fix htrace dependency conflicts

* replace htrace-core with hbase-noop-htrace
2022-09-26 13:49:11 +08:00
..
pom.xml [BUG][BE-12113]fix htrace dependency conflicts (#12126) 2022-09-26 13:49:11 +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.