pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. <modelVersion>4.0.0</modelVersion>
  21. <parent>
  22. <groupId>org.apache.dolphinscheduler</groupId>
  23. <artifactId>dolphinscheduler</artifactId>
  24. <version>2.0.0-SNAPSHOT</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-dao</artifactId>
  27. <name>${project.artifactId}</name>
  28. <properties>
  29. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  30. </properties>
  31. <dependencies>
  32. <!-- dolphinscheduler -->
  33. <dependency>
  34. <groupId>org.apache.dolphinscheduler</groupId>
  35. <artifactId>dolphinscheduler-common</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <artifactId>protobuf-java</artifactId>
  39. <groupId>com.google.protobuf</groupId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <dependency>
  44. <groupId>junit</groupId>
  45. <artifactId>junit</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.jacoco</groupId>
  50. <artifactId>org.jacoco.agent</artifactId>
  51. <classifier>runtime</classifier>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.baomidou</groupId>
  56. <artifactId>mybatis-plus</artifactId>
  57. <version>${mybatis-plus.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.baomidou</groupId>
  61. <artifactId>mybatis-plus-boot-starter</artifactId>
  62. <version>${mybatis-plus.version}</version>
  63. <exclusions>
  64. <exclusion>
  65. <groupId>org.apache.logging.log4j</groupId>
  66. <artifactId>log4j-to-slf4j</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.postgresql</groupId>
  72. <artifactId>postgresql</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-test</artifactId>
  77. <scope>test</scope>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>org.ow2.asm</groupId>
  81. <artifactId>asm</artifactId>
  82. </exclusion>
  83. <exclusion>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot</artifactId>
  86. </exclusion>
  87. <exclusion>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-autoconfigure</artifactId>
  90. </exclusion>
  91. <exclusion>
  92. <artifactId>log4j-api</artifactId>
  93. <groupId>org.apache.logging.log4j</groupId>
  94. </exclusion>
  95. <exclusion>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-tomcat</artifactId>
  98. </exclusion>
  99. <exclusion>
  100. <groupId>org.apache.logging.log4j</groupId>
  101. <artifactId>log4j-to-slf4j</artifactId>
  102. </exclusion>
  103. </exclusions>
  104. </dependency>
  105. <dependency>
  106. <groupId>mysql</groupId>
  107. <artifactId>mysql-connector-java</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.h2database</groupId>
  111. <artifactId>h2</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.alibaba</groupId>
  115. <artifactId>druid</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>ch.qos.logback</groupId>
  119. <artifactId>logback-classic</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.fasterxml.jackson.core</groupId>
  123. <artifactId>jackson-annotations</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.fasterxml.jackson.core</groupId>
  127. <artifactId>jackson-databind</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.httpcomponents</groupId>
  131. <artifactId>httpclient</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>commons-httpclient</groupId>
  135. <artifactId>commons-httpclient</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.cronutils</groupId>
  139. <artifactId>cron-utils</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>commons-configuration</groupId>
  143. <artifactId>commons-configuration</artifactId>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.springframework</groupId>
  147. <artifactId>spring-test</artifactId>
  148. <scope>test</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.yaml</groupId>
  152. <artifactId>snakeyaml</artifactId>
  153. </dependency>
  154. </dependencies>
  155. </project>