pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>canal</artifactId>
  7. <groupId>com.alibaba.otter</groupId>
  8. <version>1.0.26-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.alibaba.otter</groupId>
  12. <artifactId>canal.prometheus</artifactId>
  13. <version>1.0.26-SNAPSHOT</version>
  14. <name>canal prometheus module for otter ${project.version}</name>
  15. <dependencies>
  16. <!-- load time weaver-->
  17. <dependency>
  18. <groupId>org.aspectj</groupId>
  19. <artifactId>aspectjrt</artifactId>
  20. <version>1.8.9</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.aspectj</groupId>
  24. <artifactId>aspectjweaver</artifactId>
  25. <version>1.8.9</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.jctools</groupId>
  29. <artifactId>jctools-core</artifactId>
  30. <version>2.1.2</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.prometheus</groupId>
  34. <artifactId>simpleclient</artifactId>
  35. <version>0.4.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.prometheus</groupId>
  39. <artifactId>simpleclient_hotspot</artifactId>
  40. <version>0.4.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.prometheus</groupId>
  44. <artifactId>simpleclient_httpserver</artifactId>
  45. <version>0.4.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.prometheus</groupId>
  49. <artifactId>simpleclient_pushgateway</artifactId>
  50. <version>0.4.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.alibaba.otter</groupId>
  54. <artifactId>canal.instance.core</artifactId>
  55. <version>${project.version}</version>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba.otter</groupId>
  60. <artifactId>canal.server</artifactId>
  61. <version>${project.version}</version>
  62. <scope>provided</scope>
  63. </dependency>
  64. </dependencies>
  65. </project>