pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to Apache Software Foundation (ASF) under one or more contributor
  4. ~ license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright
  6. ~ ownership. Apache Software Foundation (ASF) licenses this file to you under
  7. ~ the Apache License, Version 2.0 (the "License"); you may
  8. ~ not use this file except in compliance with the License.
  9. ~ You may obtain a copy of the License at
  10. ~
  11. ~ http://www.apache.org/licenses/LICENSE-2.0
  12. ~
  13. ~ Unless required by applicable law or agreed to in writing,
  14. ~ software distributed under the License is distributed on an
  15. ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. ~ KIND, either express or implied. See the License for the
  17. ~ specific language governing permissions and limitations
  18. ~ under the License.
  19. -->
  20. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  21. xmlns="http://maven.apache.org/POM/4.0.0"
  22. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  23. <parent>
  24. <artifactId>dolphinscheduler</artifactId>
  25. <groupId>org.apache.dolphinscheduler</groupId>
  26. <version>2.0.0-SNAPSHOT</version>
  27. </parent>
  28. <modelVersion>4.0.0</modelVersion>
  29. <packaging>pom</packaging>
  30. <artifactId>dolphinscheduler-alert</artifactId>
  31. <modules>
  32. <module>dolphinscheduler-alert-api</module>
  33. <module>dolphinscheduler-alert-plugins</module>
  34. <module>dolphinscheduler-alert-server</module>
  35. </modules>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.slf4j</groupId>
  39. <artifactId>slf4j-api</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.google.auto.service</groupId>
  43. <artifactId>auto-service</artifactId>
  44. <optional>true</optional>
  45. </dependency>
  46. <dependency>
  47. <groupId>junit</groupId>
  48. <artifactId>junit</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.jacoco</groupId>
  53. <artifactId>org.jacoco.agent</artifactId>
  54. <classifier>runtime</classifier>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-test</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. </dependencies>
  63. </project>