brave-instrumentation-parent-5.12.7.pom 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright 2013-2020 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. <parent>
  15. <groupId>io.zipkin.brave</groupId>
  16. <artifactId>brave-parent</artifactId>
  17. <version>5.12.7</version>
  18. </parent>
  19. <artifactId>brave-instrumentation-parent</artifactId>
  20. <name>Brave: Instrumentation</name>
  21. <packaging>pom</packaging>
  22. <properties>
  23. <main.basedir>${project.basedir}/..</main.basedir>
  24. </properties>
  25. <modules>
  26. <module>benchmarks</module>
  27. <module>http</module>
  28. <module>http-tests</module>
  29. <module>dubbo</module>
  30. <module>dubbo-rpc</module>
  31. <module>grpc</module>
  32. <module>httpasyncclient</module>
  33. <module>httpclient</module>
  34. <module>jaxrs2</module>
  35. <module>jersey-server</module>
  36. <module>jms</module>
  37. <module>messaging</module>
  38. <module>mongodb</module>
  39. <module>mysql</module>
  40. <module>mysql6</module>
  41. <module>mysql8</module>
  42. <module>okhttp3</module>
  43. <module>p6spy</module>
  44. <module>rpc</module>
  45. <module>servlet</module>
  46. <module>sparkjava</module>
  47. <module>spring-rabbit</module>
  48. <module>spring-web</module>
  49. <module>spring-webmvc</module>
  50. <module>kafka-clients</module>
  51. <module>kafka-streams</module>
  52. <module>netty-codec-http</module>
  53. <module>vertx-web</module>
  54. </modules>
  55. <!-- ${project.groupId}:brave version is set in the root pom.
  56. here we set all shared versions for instrumentation -->
  57. <dependencyManagement>
  58. <dependencies>
  59. <dependency>
  60. <groupId>${project.groupId}</groupId>
  61. <artifactId>brave-instrumentation-http</artifactId>
  62. <version>${project.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>${project.groupId}</groupId>
  66. <artifactId>brave-instrumentation-http-tests</artifactId>
  67. <version>${project.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>${project.groupId}</groupId>
  71. <artifactId>brave-instrumentation-servlet</artifactId>
  72. <version>${project.version}</version>
  73. </dependency>
  74. </dependencies>
  75. </dependencyManagement>
  76. <dependencies>
  77. <dependency>
  78. <groupId>${project.groupId}</groupId>
  79. <artifactId>brave</artifactId>
  80. </dependency>
  81. </dependencies>
  82. </project>