mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-03 12:48:46 +08:00
3ad53c5200
* add task-pure delete some task module to reduce the size of the deployment package * add version of 3.2.2 * Update Chart.yaml Rollback APPversion * remove task pure plugin * fix ci * add pure datasource plugin * remove ck,sr from datasource pure * remove task plugin chunjun ,dms ,datafactory from pure * add api pom dependency * spotless:apply * add dependency license * [maven-release-plugin] prepare release 3.2.2 * [maven-release-plugin] prepare for next development iteration * remove datasource-pure: dolphinscheduler-datasource-sqlserver dolphinscheduler-datasource-oracle remove task-pure: dolphinscheduler-task-dinky dolphinscheduler-task-pytorch dolphinscheduler-task-datasync dolphinscheduler-task-kubeflow dolphinscheduler-task-emr dolphinscheduler-task-pigeon dolphinscheduler-task-flink-stream * add register pure remove jdbc and etcd * add dolphinscheduler-storage-pure remove task of dolphinscheduler-storage-obs dolphinscheduler-storage-abs dolphinscheduler-storage-gcs dolphinscheduler-storage-oss * mvn spotless:apply --------- Co-authored-by: wangxj959 <wangxj959@chinaunicom.cn> Co-authored-by: wangxj <wangxj31> Co-authored-by: wangxj3 <wangxj@apache.org> |
||
---|---|---|
.. | ||
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
.