pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.alibaba.otter</groupId>
  5. <artifactId>canal</artifactId>
  6. <version>1.1.9-SNAPSHOT</version>
  7. <relativePath>../pom.xml</relativePath>
  8. </parent>
  9. <groupId>com.alibaba.otter</groupId>
  10. <artifactId>canal.parse.dbsync</artifactId>
  11. <packaging>jar</packaging>
  12. <name>canal dbsync module for otter ${project.version}</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.alibaba.otter</groupId>
  16. <artifactId>canal.parse.driver</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <!-- log -->
  20. <dependency>
  21. <groupId>ch.qos.logback</groupId>
  22. <artifactId>logback-core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>ch.qos.logback</groupId>
  26. <artifactId>logback-classic</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.slf4j</groupId>
  30. <artifactId>jcl-over-slf4j</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.slf4j</groupId>
  34. <artifactId>slf4j-api</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.commons</groupId>
  38. <artifactId>commons-compress</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.github.luben</groupId>
  42. <artifactId>zstd-jni</artifactId>
  43. </dependency>
  44. <!-- test dependency -->
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>mysql</groupId>
  52. <artifactId>mysql-connector-java</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.powermock</groupId>
  57. <artifactId>powermock-api-mockito</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.powermock</groupId>
  62. <artifactId>powermock-module-junit4</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mockito</groupId>
  67. <artifactId>mockito-all</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.diffblue</groupId>
  72. <artifactId>deeptestutils</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. </dependencies>
  76. </project>