pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>dbsyncer-connector</artifactId>
  7. <groupId>org.ghi</groupId>
  8. <version>2.0.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>dbsyncer-connector-elasticsearch</artifactId>
  12. <dependencies>
  13. <!-- sdk -->
  14. <dependency>
  15. <groupId>org.ghi</groupId>
  16. <artifactId>dbsyncer-sdk</artifactId>
  17. <version>${project.parent.version}</version>
  18. <scope>provided</scope>
  19. </dependency>
  20. <!-- elasticsearch -->
  21. <dependency>
  22. <groupId>org.elasticsearch.client</groupId>
  23. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>org.elasticsearch</groupId>
  27. <artifactId>jna</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <!-- postgresql -->
  32. <dependency>
  33. <groupId>org.postgresql</groupId>
  34. <artifactId>postgresql</artifactId>
  35. <scope>provided</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-log4j2</artifactId>
  40. <scope>provided</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>junit</groupId>
  44. <artifactId>junit</artifactId>
  45. <scope>provided</scope>
  46. </dependency>
  47. </dependencies>
  48. </project>