zipkin-reporter-bom-2.7.7.pom 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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.7.7</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.10.4</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>http://zipkin.io/</url>
  19. </organization>
  20. <licenses>
  21. <license>
  22. <name>The Apache Software License, Version 2.0</name>
  23. <url>http://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.7.7</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>http://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. <!-- Also set version of the JUnit rule that tests reporters -->
  63. <dependency>
  64. <groupId>io.zipkin.zipkin2</groupId>
  65. <artifactId>zipkin-junit</artifactId>
  66. <version>${zipkin.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>${project.groupId}</groupId>
  70. <artifactId>zipkin-reporter</artifactId>
  71. <version>${project.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>${project.groupId}</groupId>
  75. <artifactId>zipkin-reporter</artifactId>
  76. <type>test-jar</type>
  77. <version>${project.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>${project.groupId}</groupId>
  81. <artifactId>zipkin-sender-okhttp3</artifactId>
  82. <version>${project.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>${project.groupId}</groupId>
  86. <artifactId>zipkin-sender-libthrift</artifactId>
  87. <version>${project.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>${project.groupId}</groupId>
  91. <artifactId>zipkin-sender-urlconnection</artifactId>
  92. <version>${project.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>${project.groupId}</groupId>
  96. <artifactId>zipkin-sender-kafka08</artifactId>
  97. <version>${project.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>${project.groupId}</groupId>
  101. <artifactId>zipkin-sender-kafka11</artifactId>
  102. <version>${project.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>${project.groupId}</groupId>
  106. <artifactId>zipkin-sender-amqp-client</artifactId>
  107. <version>${project.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>${project.groupId}</groupId>
  111. <artifactId>zipkin-reporter-spring-beans</artifactId>
  112. <version>${project.version}</version>
  113. </dependency>
  114. </dependencies>
  115. </dependencyManagement>
  116. </project>