pom.xml 4.9 KB

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