pom.xml 1.9 KB
Newer Older
B
bao liang 已提交
1 2
<?xml version="1.0" encoding="UTF-8"?>
<!--
3 4 5 6 7 8 9
  ~ Licensed to 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. Apache Software Foundation (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
B
bao liang 已提交
10 11 12
  ~
  ~     http://www.apache.org/licenses/LICENSE-2.0
  ~
13 14 15 16 17 18
  ~ 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.
B
bao liang 已提交
19 20
  -->

21
<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">
L
ligang 已提交
22
    <parent>
Q
qiaozhanwei 已提交
23
        <artifactId>dolphinscheduler</artifactId>
24
        <groupId>org.apache.dolphinscheduler</groupId>
25
        <version>2.0.5</version>
L
ligang 已提交
26
    </parent>
27 28
    <modelVersion>4.0.0</modelVersion>
    <packaging>pom</packaging>
Q
qiaozhanwei 已提交
29
    <artifactId>dolphinscheduler-alert</artifactId>
30

31 32 33 34 35
    <modules>
        <module>dolphinscheduler-alert-api</module>
        <module>dolphinscheduler-alert-plugins</module>
        <module>dolphinscheduler-alert-server</module>
    </modules>
L
ligang 已提交
36

37
    <dependencies>
L
ligang 已提交
38 39 40 41 42
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
43 44
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
45 46
            <scope>test</scope>
        </dependency>
L
ligang 已提交
47 48
    </dependencies>
</project>