2021-08-18 10:32:19 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
~ Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
~ contributor license agreements. See the NOTICE file distributed with
|
|
|
|
~ this work for additional information regarding copyright ownership.
|
|
|
|
~ The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
~ (the "License"); you may not use this file except in compliance with
|
|
|
|
~ the License. You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>dolphinscheduler</artifactId>
|
|
|
|
<groupId>org.apache.dolphinscheduler</groupId>
|
2022-01-25 15:17:17 +08:00
|
|
|
<version>2.0.4-SNAPSHOT</version>
|
2021-08-18 10:32:19 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>dolphinscheduler-task-plugin</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>dolphinscheduler-task-api</module>
|
2021-09-07 15:04:18 +08:00
|
|
|
<module>dolphinscheduler-task-shell</module>
|
|
|
|
<module>dolphinscheduler-task-datax</module>
|
2021-08-18 10:32:19 +08:00
|
|
|
<module>dolphinscheduler-task-flink</module>
|
2021-09-07 15:04:18 +08:00
|
|
|
<module>dolphinscheduler-task-http</module>
|
|
|
|
<module>dolphinscheduler-task-mr</module>
|
2021-08-18 10:32:19 +08:00
|
|
|
<module>dolphinscheduler-task-python</module>
|
|
|
|
<module>dolphinscheduler-task-spark</module>
|
2021-09-02 10:08:38 +08:00
|
|
|
<module>dolphinscheduler-task-sql</module>
|
|
|
|
<module>dolphinscheduler-task-sqoop</module>
|
|
|
|
<module>dolphinscheduler-task-procedure</module>
|
2021-10-01 14:54:04 +08:00
|
|
|
<module>dolphinscheduler-task-pigeon</module>
|
2022-01-27 15:55:45 +08:00
|
|
|
<module>dolphinscheduler-task-dataquality</module>
|
2022-01-07 20:51:11 +08:00
|
|
|
<module>dolphinscheduler-task-seatunnel</module>
|
2022-03-15 15:16:36 +08:00
|
|
|
<module>dolphinscheduler-task-conditions</module>
|
|
|
|
<module>dolphinscheduler-task-dependent</module>
|
|
|
|
<module>dolphinscheduler-task-subprocess</module>
|
|
|
|
<module>dolphinscheduler-task-switch</module>
|
|
|
|
<module>dolphinscheduler-task-all</module>
|
2022-03-01 11:43:37 +08:00
|
|
|
<module>dolphinscheduler-task-emr</module>
|
2022-03-15 15:16:36 +08:00
|
|
|
<module>dolphinscheduler-task-blocking</module>
|
2021-08-18 10:32:19 +08:00
|
|
|
</modules>
|
2021-11-10 18:29:17 +08:00
|
|
|
</project>
|