pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <parent>
  4. <artifactId>canal</artifactId>
  5. <groupId>com.alibaba.otter</groupId>
  6. <version>1.1.9-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>com.alibaba.otter</groupId>
  10. <artifactId>canal.prometheus</artifactId>
  11. <version>1.1.9-SNAPSHOT</version>
  12. <name>canal prometheus module for otter ${project.version}</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.jctools</groupId>
  16. <artifactId>jctools-core</artifactId>
  17. <version>2.1.2</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>io.prometheus</groupId>
  21. <artifactId>simpleclient</artifactId>
  22. <version>0.4.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.prometheus</groupId>
  26. <artifactId>simpleclient_hotspot</artifactId>
  27. <version>0.4.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.prometheus</groupId>
  31. <artifactId>simpleclient_httpserver</artifactId>
  32. <version>0.4.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.prometheus</groupId>
  36. <artifactId>simpleclient_pushgateway</artifactId>
  37. <version>0.4.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.alibaba.otter</groupId>
  41. <artifactId>canal.instance.core</artifactId>
  42. <version>${project.version}</version>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba.otter</groupId>
  47. <artifactId>canal.server</artifactId>
  48. <version>${project.version}</version>
  49. <scope>provided</scope>
  50. </dependency>
  51. </dependencies>
  52. </project>