zipkin-reporter-bom-3.4.2.pom 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright 2016-2023 The OpenZipkin Authors
  4. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
  5. in compliance with the License. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software distributed under the License
  8. is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
  9. or implied. See the License for the specific language governing permissions and limitations under
  10. the License.
  11. -->
  12. <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">
  13. <modelVersion>4.0.0</modelVersion>
  14. <groupId>io.zipkin.reporter2</groupId>
  15. <artifactId>zipkin-reporter-bom</artifactId>
  16. <name>Zipkin Reporter BOM</name>
  17. <version>3.4.2</version>
  18. <packaging>pom</packaging>
  19. <description>Bill Of Materials POM for all Zipkin reporter artifacts</description>
  20. <properties>
  21. <main.basedir>${project.basedir}/..</main.basedir>
  22. <!-- use the same value in ../pom.xml -->
  23. <!-- NOTE: Do not update to 3.x as that has floor Java 8 -->
  24. <zipkin.version>2.27.1</zipkin.version>
  25. </properties>
  26. <url>https://github.com/openzipkin/zipkin-reporter-java</url>
  27. <inceptionYear>2016</inceptionYear>
  28. <organization>
  29. <name>OpenZipkin</name>
  30. <url>https://zipkin.io/</url>
  31. </organization>
  32. <licenses>
  33. <license>
  34. <name>The Apache Software License, Version 2.0</name>
  35. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  36. <distribution>repo</distribution>
  37. </license>
  38. </licenses>
  39. <scm>
  40. <url>https://github.com/openzipkin/zipkin-reporter-java</url>
  41. <connection>scm:git:https://github.com/openzipkin/zipkin-reporter-java.git</connection>
  42. <developerConnection>scm:git:https://github.com/openzipkin/zipkin-reporter-java.git</developerConnection>
  43. <tag>3.4.2</tag>
  44. </scm>
  45. <!-- Developer section is needed for Maven Central, but doesn't need to include each person -->
  46. <developers>
  47. <developer>
  48. <id>openzipkin</id>
  49. <name>OpenZipkin Gitter</name>
  50. <url>https://gitter.im/openzipkin/zipkin</url>
  51. </developer>
  52. </developers>
  53. <distributionManagement>
  54. <snapshotRepository>
  55. <id>ossrh</id>
  56. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  57. </snapshotRepository>
  58. <repository>
  59. <id>ossrh</id>
  60. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  61. </repository>
  62. </distributionManagement>
  63. <issueManagement>
  64. <system>Github</system>
  65. <url>https://github.com/openzipkin/zipkin-reporter-java/issues</url>
  66. </issueManagement>
  67. <dependencyManagement>
  68. <dependencies>
  69. <dependency>
  70. <groupId>io.zipkin.zipkin2</groupId>
  71. <artifactId>zipkin</artifactId>
  72. <version>${zipkin.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>${project.groupId}</groupId>
  76. <artifactId>zipkin-reporter</artifactId>
  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-kafka</artifactId>
  97. <version>${project.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>${project.groupId}</groupId>
  101. <artifactId>zipkin-sender-amqp-client</artifactId>
  102. <version>${project.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>${project.groupId}</groupId>
  106. <artifactId>zipkin-sender-activemq-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. <dependency>
  115. <groupId>${project.groupId}</groupId>
  116. <artifactId>zipkin-reporter-brave</artifactId>
  117. <version>${project.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>${project.groupId}</groupId>
  121. <artifactId>zipkin-reporter-metrics-micrometer</artifactId>
  122. <version>${project.version}</version>
  123. </dependency>
  124. </dependencies>
  125. </dependencyManagement>
  126. <profiles>
  127. <profile>
  128. <id>release</id>
  129. <build>
  130. <plugins>
  131. <plugin>
  132. <groupId>org.sonatype.plugins</groupId>
  133. <artifactId>nexus-staging-maven-plugin</artifactId>
  134. <version>1.6.13</version>
  135. <extensions>true</extensions>
  136. <configuration>
  137. <serverId>ossrh</serverId>
  138. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  139. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  140. </configuration>
  141. </plugin>
  142. <plugin>
  143. <artifactId>maven-deploy-plugin</artifactId>
  144. <version>3.1.1</version>
  145. </plugin>
  146. <plugin>
  147. <artifactId>maven-gpg-plugin</artifactId>
  148. <version>3.2.2</version>
  149. <executions>
  150. <execution>
  151. <id>sign-artifacts</id>
  152. <phase>verify</phase>
  153. <goals>
  154. <goal>sign</goal>
  155. </goals>
  156. <configuration>
  157. <gpgArguments>
  158. <arg>--pinentry-mode</arg>
  159. <arg>loopback</arg>
  160. </gpgArguments>
  161. </configuration>
  162. </execution>
  163. </executions>
  164. </plugin>
  165. </plugins>
  166. </build>
  167. </profile>
  168. </profiles>
  169. </project>