reactor-netty-http-brave-1.0.0.pom 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>io.projectreactor.netty</groupId>
  5. <artifactId>reactor-netty-http-brave</artifactId>
  6. <version>1.0.0</version>
  7. <name>Brave instrumentation for Reactor Netty HTTP</name>
  8. <description>Brave instrumentation for Reactor Netty HTTP</description>
  9. <url>https://github.com/reactor/reactor-netty</url>
  10. <organization>
  11. <name>reactor</name>
  12. <url>https://github.com/reactor</url>
  13. </organization>
  14. <licenses>
  15. <license>
  16. <name>The Apache Software License, Version 2.0</name>
  17. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <id>smaldini</id>
  24. <name>Stephane Maldini</name>
  25. <email>smaldini@pivotal.io</email>
  26. </developer>
  27. <developer>
  28. <id>simonbasle</id>
  29. <name>Simon Baslé</name>
  30. <email>sbasle@pivotal.io</email>
  31. </developer>
  32. <developer>
  33. <id>violetagg</id>
  34. <name>Violeta Georgieva</name>
  35. <email>vgeorgieva@pivotal.io</email>
  36. </developer>
  37. </developers>
  38. <scm>
  39. <connection>scm:git:git://github.com/reactor/reactor-netty</connection>
  40. <developerConnection>scm:git:git://github.com/reactor/reactor-netty</developerConnection>
  41. <url>https://github.com/reactor/reactor-netty</url>
  42. </scm>
  43. <issueManagement>
  44. <system>GitHub Issues</system>
  45. <url>https://github.com/reactor/reactor-netty/issues</url>
  46. </issueManagement>
  47. <dependencies>
  48. <dependency>
  49. <groupId>io.projectreactor.netty</groupId>
  50. <artifactId>reactor-netty-http</artifactId>
  51. <version>1.0.0</version>
  52. <scope>compile</scope>
  53. <exclusions>
  54. <exclusion>
  55. <artifactId>commons-logging</artifactId>
  56. <groupId>commons-logging</groupId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.zipkin.brave</groupId>
  62. <artifactId>brave-instrumentation-http</artifactId>
  63. <version>5.12.7</version>
  64. <scope>compile</scope>
  65. <exclusions>
  66. <exclusion>
  67. <artifactId>commons-logging</artifactId>
  68. <groupId>commons-logging</groupId>
  69. </exclusion>
  70. </exclusions>
  71. </dependency>
  72. </dependencies>
  73. </project>