zipkin-reporter-bom-2.10.2.pom 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. <groupId>io.zipkin.reporter2</groupId>
  4. <artifactId>zipkin-reporter-bom</artifactId>
  5. <name>Zipkin Reporter BOM</name>
  6. <version>2.10.2</version>
  7. <packaging>pom</packaging>
  8. <description>Bill Of Materials POM for all Zipkin reporter artifacts</description>
  9. <properties>
  10. <main.basedir>${project.basedir}/..</main.basedir>
  11. <!-- use the same value in ../pom.xml -->
  12. <zipkin.version>2.16.0</zipkin.version>
  13. </properties>
  14. <url>https://github.com/openzipkin/zipkin-reporter-java</url>
  15. <inceptionYear>2016</inceptionYear>
  16. <organization>
  17. <name>OpenZipkin</name>
  18. <url>https://zipkin.io/</url>
  19. </organization>
  20. <licenses>
  21. <license>
  22. <name>The Apache Software License, Version 2.0</name>
  23. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  24. <distribution>repo</distribution>
  25. </license>
  26. </licenses>
  27. <scm>
  28. <url>https://github.com/openzipkin/zipkin-reporter-java</url>
  29. <connection>scm:git:https://github.com/openzipkin/zipkin-reporter-java.git</connection>
  30. <developerConnection>scm:git:https://github.com/openzipkin/zipkin-reporter-java.git</developerConnection>
  31. <tag>2.10.2</tag>
  32. </scm>
  33. <!-- Developer section is needed for Maven Central, but doesn't need to include each person -->
  34. <developers>
  35. <developer>
  36. <id>openzipkin</id>
  37. <name>OpenZipkin Gitter</name>
  38. <url>https://gitter.im/openzipkin/zipkin</url>
  39. </developer>
  40. </developers>
  41. <distributionManagement>
  42. <repository>
  43. <id>bintray</id>
  44. <url>https://api.bintray.com/maven/openzipkin/maven/zipkin-reporter-java/;publish=1</url>
  45. </repository>
  46. <snapshotRepository>
  47. <id>jfrog-snapshots</id>
  48. <url>https://oss.jfrog.org/artifactory/oss-snapshot-local</url>
  49. </snapshotRepository>
  50. </distributionManagement>
  51. <issueManagement>
  52. <system>Github</system>
  53. <url>https://github.com/openzipkin/zipkin-reporter-java/issues</url>
  54. </issueManagement>
  55. <dependencyManagement>
  56. <dependencies>
  57. <dependency>
  58. <groupId>io.zipkin.zipkin2</groupId>
  59. <artifactId>zipkin</artifactId>
  60. <version>${zipkin.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>io.zipkin.zipkin2</groupId>
  64. <artifactId>zipkin-tests</artifactId>
  65. <version>${zipkin.version}</version>
  66. </dependency>
  67. <!-- Also set version of the JUnit rule that tests reporters -->
  68. <dependency>
  69. <groupId>io.zipkin.zipkin2</groupId>
  70. <artifactId>zipkin-junit</artifactId>
  71. <version>${zipkin.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>${project.groupId}</groupId>
  75. <artifactId>zipkin-reporter</artifactId>
  76. <version>${project.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>${project.groupId}</groupId>
  80. <artifactId>zipkin-sender-okhttp3</artifactId>
  81. <version>${project.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>${project.groupId}</groupId>
  85. <artifactId>zipkin-sender-libthrift</artifactId>
  86. <version>${project.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>${project.groupId}</groupId>
  90. <artifactId>zipkin-sender-urlconnection</artifactId>
  91. <version>${project.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>${project.groupId}</groupId>
  95. <artifactId>zipkin-sender-kafka08</artifactId>
  96. <version>${project.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>${project.groupId}</groupId>
  100. <artifactId>zipkin-sender-kafka</artifactId>
  101. <version>${project.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>${project.groupId}</groupId>
  105. <artifactId>zipkin-sender-amqp-client</artifactId>
  106. <version>${project.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>${project.groupId}</groupId>
  110. <artifactId>zipkin-sender-activemq-client</artifactId>
  111. <version>${project.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>${project.groupId}</groupId>
  115. <artifactId>zipkin-reporter-spring-beans</artifactId>
  116. <version>${project.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>${project.groupId}</groupId>
  120. <artifactId>zipkin-reporter-metrics-micrometer</artifactId>
  121. <version>${project.version}</version>
  122. </dependency>
  123. </dependencies>
  124. </dependencyManagement>
  125. </project>