pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- ~ Licensed to the Apache Software Foundation (ASF) under one or more
  3. ~ contributor license agreements. See the NOTICE file distributed with ~
  4. this work for additional information regarding copyright ownership. ~ The
  5. ASF licenses this file to You under the Apache License, Version 2.0 ~ (the
  6. "License"); you may not use this file except in compliance with ~ the License.
  7. You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0
  8. ~ ~ Unless required by applicable law or agreed to in writing, software ~
  9. distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT
  10. WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the
  11. License for the specific language governing permissions and ~ limitations
  12. under the License. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0"
  14. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  15. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  16. <parent>
  17. <artifactId>dolphinscheduler</artifactId>
  18. <groupId>org.apache.dolphinscheduler</groupId>
  19. <version>1.3.4-SNAPSHOT</version>
  20. </parent>
  21. <modelVersion>4.0.0</modelVersion>
  22. <artifactId>dolphinscheduler-service</artifactId>
  23. <name>dolphinscheduler-service</name>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.apache.dolphinscheduler</groupId>
  27. <artifactId>dolphinscheduler-remote</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.dolphinscheduler</groupId>
  31. <artifactId>dolphinscheduler-dao</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.curator</groupId>
  35. <artifactId>curator-client</artifactId>
  36. <version>${curator.version}</version>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>log4j-1.2-api</groupId>
  40. <artifactId>org.apache.logging.log4j</artifactId>
  41. </exclusion>
  42. <exclusion>
  43. <groupId>io.netty</groupId>
  44. <artifactId>netty</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.quartz-scheduler</groupId>
  50. <artifactId>quartz</artifactId>
  51. <exclusions>
  52. <exclusion>
  53. <artifactId>c3p0</artifactId>
  54. <groupId>c3p0</groupId>
  55. </exclusion>
  56. <exclusion>
  57. <groupId>com.mchange</groupId>
  58. <artifactId>mchange-commons-java</artifactId>
  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>