pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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-registry-plugins</artifactId>
  26. <version>dev-SNAPSHOT</version>
  27. </parent>
  28. <artifactId>dolphinscheduler-registry-jdbc</artifactId>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.apache.dolphinscheduler</groupId>
  32. <artifactId>dolphinscheduler-registry-api</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.dolphinscheduler</groupId>
  36. <artifactId>dolphinscheduler-common</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.zaxxer</groupId>
  40. <artifactId>HikariCP</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>mysql</groupId>
  44. <artifactId>mysql-connector-java</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.postgresql</groupId>
  48. <artifactId>postgresql</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.slf4j</groupId>
  52. <artifactId>slf4j-api</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.baomidou</groupId>
  56. <artifactId>mybatis-plus</artifactId>
  57. </dependency>
  58. </dependencies>
  59. </project>