pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 1999-2019 Seata.io Group.
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <project xmlns="http://maven.apache.org/POM/4.0.0"
  18. 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. <groupId>io.seata</groupId>
  22. <artifactId>seata-parent</artifactId>
  23. <version>${revision}</version>
  24. </parent>
  25. <modelVersion>4.0.0</modelVersion>
  26. <artifactId>seata-rm-datasource</artifactId>
  27. <packaging>jar</packaging>
  28. <name>seata-rm-datasource ${project.version}</name>
  29. <description>datasource resource manager for Seata built with Maven</description>
  30. <dependencies>
  31. <dependency>
  32. <groupId>${project.groupId}</groupId>
  33. <artifactId>seata-core</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>${project.groupId}</groupId>
  38. <artifactId>seata-rm</artifactId>
  39. <version>${project.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>${project.groupId}</groupId>
  43. <artifactId>seata-sqlparser-core</artifactId>
  44. <version>${project.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>${project.groupId}</groupId>
  48. <artifactId>seata-compressor-all</artifactId>
  49. <version>${project.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.ben-manes.caffeine</groupId>
  53. <artifactId>caffeine</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.protostuff</groupId>
  57. <artifactId>protostuff-core</artifactId>
  58. <optional>true</optional>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.protostuff</groupId>
  62. <artifactId>protostuff-runtime</artifactId>
  63. <optional>true</optional>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.fasterxml.jackson.core</groupId>
  67. <artifactId>jackson-databind</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.commons</groupId>
  71. <artifactId>commons-dbcp2</artifactId>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.h2database</groupId>
  76. <artifactId>h2</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>${project.groupId}</groupId>
  81. <artifactId>seata-sqlparser-druid</artifactId>
  82. <version>${project.version}</version>
  83. <scope>test</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.google.guava</groupId>
  87. <artifactId>guava</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.esotericsoftware</groupId>
  91. <artifactId>kryo</artifactId>
  92. <scope>provided</scope>
  93. <optional>true</optional>
  94. </dependency>
  95. <dependency>
  96. <groupId>de.javakaffee</groupId>
  97. <artifactId>kryo-serializers</artifactId>
  98. <scope>provided</scope>
  99. <optional>true</optional>
  100. </dependency>
  101. <dependency>
  102. <groupId>de.ruedigermoeller</groupId>
  103. <artifactId>fst</artifactId>
  104. <scope>provided</scope>
  105. <optional>true</optional>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.alibaba</groupId>
  109. <artifactId>fastjson</artifactId>
  110. <scope>provided</scope>
  111. <optional>true</optional>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.alibaba</groupId>
  115. <artifactId>druid</artifactId>
  116. <scope>provided</scope>
  117. <optional>true</optional>
  118. </dependency>
  119. <dependency>
  120. <groupId>mysql</groupId>
  121. <artifactId>mysql-connector-java</artifactId>
  122. <scope>test</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.mariadb.jdbc</groupId>
  126. <artifactId>mariadb-java-client</artifactId>
  127. <scope>provided</scope>
  128. <optional>true</optional>
  129. </dependency>
  130. <dependency>
  131. <groupId>commons-logging</groupId>
  132. <artifactId>commons-logging</artifactId>
  133. <optional>true</optional>
  134. </dependency>
  135. </dependencies>
  136. </project>