README.md 800 字节
Newer Older
1
# Introduction
2 3 4

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,
5
this can help you to manage the version.
6

7 8 9 10 11 12 13 14 15 16 17 18 19
```xml
<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>
```
20 21 22

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