| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <groupId>io.projectreactor.netty</groupId>
- <artifactId>reactor-netty-http-brave</artifactId>
- <version>1.0.0</version>
- <name>Brave instrumentation for Reactor Netty HTTP</name>
- <description>Brave instrumentation for Reactor Netty HTTP</description>
- <url>https://github.com/reactor/reactor-netty</url>
- <organization>
- <name>reactor</name>
- <url>https://github.com/reactor</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>
- <developers>
- <developer>
- <id>smaldini</id>
- <name>Stephane Maldini</name>
- <email>smaldini@pivotal.io</email>
- </developer>
- <developer>
- <id>simonbasle</id>
- <name>Simon Baslé</name>
- <email>sbasle@pivotal.io</email>
- </developer>
- <developer>
- <id>violetagg</id>
- <name>Violeta Georgieva</name>
- <email>vgeorgieva@pivotal.io</email>
- </developer>
- </developers>
- <scm>
- <connection>scm:git:git://github.com/reactor/reactor-netty</connection>
- <developerConnection>scm:git:git://github.com/reactor/reactor-netty</developerConnection>
- <url>https://github.com/reactor/reactor-netty</url>
- </scm>
- <issueManagement>
- <system>GitHub Issues</system>
- <url>https://github.com/reactor/reactor-netty/issues</url>
- </issueManagement>
- <dependencies>
- <dependency>
- <groupId>io.projectreactor.netty</groupId>
- <artifactId>reactor-netty-http</artifactId>
- <version>1.0.0</version>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <artifactId>commons-logging</artifactId>
- <groupId>commons-logging</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>io.zipkin.brave</groupId>
- <artifactId>brave-instrumentation-http</artifactId>
- <version>5.12.7</version>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <artifactId>commons-logging</artifactId>
- <groupId>commons-logging</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- </project>
|