pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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.0-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.quartz-scheduler</groupId>
  48. <artifactId>quartz</artifactId>
  49. <exclusions>
  50. <exclusion>
  51. <groupId>com.mchange</groupId>
  52. <artifactId>c3p0</artifactId>
  53. </exclusion>
  54. <exclusion>
  55. <groupId>com.mchange</groupId>
  56. <artifactId>mchange-commons-java</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>com.zaxxer</groupId>
  60. <artifactId>HikariCP-java6</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.quartz-scheduler</groupId>
  66. <artifactId>quartz-jobs</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.powermock</groupId>
  70. <artifactId>powermock-module-junit4</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.powermock</groupId>
  75. <artifactId>powermock-api-mockito2</artifactId>
  76. <scope>test</scope>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>org.mockito</groupId>
  80. <artifactId>mockito-core</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.mockito</groupId>
  86. <artifactId>mockito-core</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.jacoco</groupId>
  91. <artifactId>org.jacoco.agent</artifactId>
  92. <classifier>runtime</classifier>
  93. <scope>test</scope>
  94. </dependency>
  95. </dependencies>
  96. </project>