pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  22. <modelVersion>4.0.0</modelVersion>
  23. <parent>
  24. <groupId>org.apache.dolphinscheduler</groupId>
  25. <artifactId>dolphinscheduler</artifactId>
  26. <version>dev-SNAPSHOT</version>
  27. </parent>
  28. <artifactId>dolphinscheduler-alert</artifactId>
  29. <packaging>pom</packaging>
  30. <modules>
  31. <module>dolphinscheduler-alert-api</module>
  32. <module>dolphinscheduler-alert-plugins</module>
  33. <module>dolphinscheduler-alert-server</module>
  34. </modules>
  35. <dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.apache.dolphinscheduler</groupId>
  39. <artifactId>dolphinscheduler-bom</artifactId>
  40. <version>${project.version}</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. </dependencies>
  45. </dependencyManagement>
  46. </project>