pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.lewaimai</groupId>
  6. <artifactId>mysql-elasticsearch</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>jar</packaging>
  9. <name>mysql-elasticsearch</name>
  10. <url>http://maven.apache.org</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <!-- http://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-core -->
  16. <dependency>
  17. <groupId>com.sun.xml.bind</groupId>
  18. <artifactId>jaxb-core</artifactId>
  19. <version>2.2.11</version>
  20. </dependency>
  21. <!-- http://mvnrepository.com/artifact/javax.xml/jaxb-api -->
  22. <dependency>
  23. <groupId>javax.xml</groupId>
  24. <artifactId>jaxb-api</artifactId>
  25. <version>2.1</version>
  26. </dependency>
  27. <!-- http://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl -->
  28. <dependency>
  29. <groupId>com.sun.xml.bind</groupId>
  30. <artifactId>jaxb-impl</artifactId>
  31. <version>2.2.11</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba.otter</groupId>
  35. <artifactId>canal.client</artifactId>
  36. <version>1.0.24</version>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>ch.qos.logback</groupId>
  40. <artifactId>logback-core</artifactId>
  41. </exclusion>
  42. <exclusion>
  43. <groupId>ch.qos.logback</groupId>
  44. <artifactId>logback-classic</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>log4j</groupId>
  50. <artifactId>log4j</artifactId>
  51. <version>1.2.17</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.slf4j</groupId>
  55. <artifactId>slf4j-api</artifactId>
  56. <version>1.7.21</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.slf4j</groupId>
  60. <artifactId>slf4j-log4j12</artifactId>
  61. <version>1.7.21</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>junit</groupId>
  65. <artifactId>junit</artifactId>
  66. <version>3.8.1</version>
  67. <scope>test</scope>
  68. </dependency>
  69. </dependencies>
  70. </project>