pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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>3.2.2-SNAPSHOT</version>
  27. </parent>
  28. <artifactId>dolphinscheduler-alert</artifactId>
  29. <packaging>pom</packaging>
  30. <modules>
  31. <module>dolphinscheduler-alert-plugins</module>
  32. <module>dolphinscheduler-alert-server</module>
  33. </modules>
  34. <dependencyManagement>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.apache.dolphinscheduler</groupId>
  38. <artifactId>dolphinscheduler-bom</artifactId>
  39. <version>${project.version}</version>
  40. <type>pom</type>
  41. <scope>import</scope>
  42. </dependency>
  43. </dependencies>
  44. </dependencyManagement>
  45. </project>