pom.xml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one or more
  4. ~ contributor license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright ownership.
  6. ~ The ASF licenses this file to You under the Apache License, Version 2.0
  7. ~ (the "License"); you may not use this file except in compliance with
  8. ~ the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <parent>
  21. <artifactId>dolphinscheduler</artifactId>
  22. <groupId>org.apache.dolphinscheduler</groupId>
  23. <version>2.0.4-SNAPSHOT</version>
  24. </parent>
  25. <modelVersion>4.0.0</modelVersion>
  26. <artifactId>dolphinscheduler-service</artifactId>
  27. <name>dolphinscheduler-service</name>
  28. <dependencies>
  29. <!-- dolphinscheduler -->
  30. <dependency>
  31. <groupId>org.apache.dolphinscheduler</groupId>
  32. <artifactId>dolphinscheduler-remote</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.dolphinscheduler</groupId>
  36. <artifactId>dolphinscheduler-dao</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.dolphinscheduler</groupId>
  40. <artifactId>dolphinscheduler-spi</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.dolphinscheduler</groupId>
  44. <artifactId>dolphinscheduler-registry-zookeeper</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-quartz</artifactId>
  49. <exclusions>
  50. <exclusion>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter</artifactId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.quartz-scheduler</groupId>
  58. <artifactId>quartz</artifactId>
  59. <exclusions>
  60. <exclusion>
  61. <groupId>com.mchange</groupId>
  62. <artifactId>c3p0</artifactId>
  63. </exclusion>
  64. <exclusion>
  65. <groupId>com.mchange</groupId>
  66. <artifactId>mchange-commons-java</artifactId>
  67. </exclusion>
  68. <exclusion>
  69. <groupId>com.zaxxer</groupId>
  70. <artifactId>HikariCP-java7</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.quartz-scheduler</groupId>
  76. <artifactId>quartz-jobs</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.micrometer</groupId>
  80. <artifactId>micrometer-core</artifactId>
  81. <scope>provided</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.github.ben-manes.caffeine</groupId>
  85. <artifactId>caffeine</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>io.fabric8</groupId>
  89. <artifactId>kubernetes-client</artifactId>
  90. </dependency>
  91. </dependencies>
  92. </project>