pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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>${revision}</version>
  24. </parent>
  25. <modelVersion>4.0.0</modelVersion>
  26. <artifactId>dolphinscheduler-service</artifactId>
  27. <name>dolphinscheduler-service</name>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.apache.dolphinscheduler</groupId>
  31. <artifactId>dolphinscheduler-remote</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.dolphinscheduler</groupId>
  35. <artifactId>dolphinscheduler-dao</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.curator</groupId>
  39. <artifactId>curator-client</artifactId>
  40. <version>${curator.version}</version>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>log4j-1.2-api</groupId>
  44. <artifactId>org.apache.logging.log4j</artifactId>
  45. </exclusion>
  46. <exclusion>
  47. <groupId>io.netty</groupId>
  48. <artifactId>netty</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.quartz-scheduler</groupId>
  54. <artifactId>quartz</artifactId>
  55. <exclusions>
  56. <exclusion>
  57. <groupId>com.mchange</groupId>
  58. <artifactId>c3p0</artifactId>
  59. </exclusion>
  60. <exclusion>
  61. <groupId>com.mchange</groupId>
  62. <artifactId>mchange-commons-java</artifactId>
  63. </exclusion>
  64. <exclusion>
  65. <groupId>com.zaxxer</groupId>
  66. <artifactId>HikariCP-java6</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.logging.log4j</groupId>
  72. <artifactId>log4j-core</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.quartz-scheduler</groupId>
  76. <artifactId>quartz-jobs</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.powermock</groupId>
  80. <artifactId>powermock-module-junit4</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.powermock</groupId>
  85. <artifactId>powermock-api-mockito2</artifactId>
  86. <scope>test</scope>
  87. <exclusions>
  88. <exclusion>
  89. <groupId>org.mockito</groupId>
  90. <artifactId>mockito-core</artifactId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.mockito</groupId>
  96. <artifactId>mockito-core</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. </dependencies>
  100. </project>