DolphinScheduler/dolphinscheduler-bom
chenrj 5a3827eef4
[DSIP-19] Support sagemaker connections in the connection center, as well as external connections to the connection center in sagemaker tasks (#14976)
* Refactoring `Sagemaker` task plugin with connections managed in connection center.

---------

Co-authored-by: Eric Gao <ericgao.apache@gmail.com>
2023-10-31 10:07:05 +08:00
..
pom.xml [DSIP-19] Support sagemaker connections in the connection center, as well as external connections to the connection center in sagemaker tasks (#14976) 2023-10-31 10:07:05 +08:00
README.md [Doc][Style] Fix doc format once for all (#12006) 2022-09-17 11:33:32 +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.