| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>io.zipkin.reporter2</groupId>
- <artifactId>zipkin-reporter-bom</artifactId>
- <name>Zipkin Reporter BOM</name>
- <version>2.10.2</version>
- <packaging>pom</packaging>
- <description>Bill Of Materials POM for all Zipkin reporter artifacts</description>
- <properties>
- <main.basedir>${project.basedir}/..</main.basedir>
- <!-- use the same value in ../pom.xml -->
- <zipkin.version>2.16.0</zipkin.version>
- </properties>
- <url>https://github.com/openzipkin/zipkin-reporter-java</url>
- <inceptionYear>2016</inceptionYear>
- <organization>
- <name>OpenZipkin</name>
- <url>https://zipkin.io/</url>
- </organization>
- <licenses>
- <license>
- <name>The Apache Software License, Version 2.0</name>
- <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <scm>
- <url>https://github.com/openzipkin/zipkin-reporter-java</url>
- <connection>scm:git:https://github.com/openzipkin/zipkin-reporter-java.git</connection>
- <developerConnection>scm:git:https://github.com/openzipkin/zipkin-reporter-java.git</developerConnection>
- <tag>2.10.2</tag>
- </scm>
- <!-- Developer section is needed for Maven Central, but doesn't need to include each person -->
- <developers>
- <developer>
- <id>openzipkin</id>
- <name>OpenZipkin Gitter</name>
- <url>https://gitter.im/openzipkin/zipkin</url>
- </developer>
- </developers>
- <distributionManagement>
- <repository>
- <id>bintray</id>
- <url>https://api.bintray.com/maven/openzipkin/maven/zipkin-reporter-java/;publish=1</url>
- </repository>
- <snapshotRepository>
- <id>jfrog-snapshots</id>
- <url>https://oss.jfrog.org/artifactory/oss-snapshot-local</url>
- </snapshotRepository>
- </distributionManagement>
- <issueManagement>
- <system>Github</system>
- <url>https://github.com/openzipkin/zipkin-reporter-java/issues</url>
- </issueManagement>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>io.zipkin.zipkin2</groupId>
- <artifactId>zipkin</artifactId>
- <version>${zipkin.version}</version>
- </dependency>
- <dependency>
- <groupId>io.zipkin.zipkin2</groupId>
- <artifactId>zipkin-tests</artifactId>
- <version>${zipkin.version}</version>
- </dependency>
- <!-- Also set version of the JUnit rule that tests reporters -->
- <dependency>
- <groupId>io.zipkin.zipkin2</groupId>
- <artifactId>zipkin-junit</artifactId>
- <version>${zipkin.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>zipkin-reporter</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>zipkin-sender-okhttp3</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>zipkin-sender-libthrift</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>zipkin-sender-urlconnection</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>zipkin-sender-kafka08</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>zipkin-sender-kafka</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>zipkin-sender-amqp-client</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>zipkin-sender-activemq-client</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>zipkin-reporter-spring-beans</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>zipkin-reporter-metrics-micrometer</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|