分布式调度框架。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
caishunfeng 99a2461785
[Improvement] change js engine (#15747)
1 month ago
..
README.md [Doc][Style] Fix doc format once for all (#12006) 2 years ago
pom.xml [Improvement] change js engine (#15747) 1 month ago

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.