pom.xml 3.6 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>1.3.2-SNAPSHOT</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. <artifactId>c3p0</artifactId>
  58. <groupId>c3p0</groupId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.logging.log4j</groupId>
  64. <artifactId>log4j-core</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.quartz-scheduler</groupId>
  68. <artifactId>quartz-jobs</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.powermock</groupId>
  72. <artifactId>powermock-module-junit4</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.powermock</groupId>
  77. <artifactId>powermock-api-mockito2</artifactId>
  78. <scope>test</scope>
  79. <exclusions>
  80. <exclusion>
  81. <groupId>org.mockito</groupId>
  82. <artifactId>mockito-core</artifactId>
  83. </exclusion>
  84. </exclusions>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.mockito</groupId>
  88. <artifactId>mockito-core</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. </dependencies>
  92. </project>