mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-02 04:08:31 +08:00
25480ae9e7
* [Feature][Resource Center] Add support for Huawei Cloud OBS as storage of resource center * add license and add doc * add 3-party dependency license * Update LICENSE * fix * Update pom.xml * fix * fix --------- Co-authored-by: sunkang <sunkang@hjfruit.com> Co-authored-by: xiangzihao <460888207@qq.com> Co-authored-by: Rick Cheng <rickchengx@gmail.com> |
||
---|---|---|
.. | ||
pom.xml | ||
README.md |
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
.