brave-instrumentation-vertx-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.zipkin.brave</groupId> <artifactId>brave-instrumentation-vertx-web</artifactId> <version>6.3.0</version> </dependency>
<?xml version="1.0"?> <!-- Copyright The OpenZipkin Authors SPDX-License-Identifier: Apache-2.0 --> <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"> <parent> <groupId>io.zipkin.brave</groupId> <artifactId>brave-instrumentation-parent</artifactId> <version>6.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>brave-instrumentation-vertx-web</artifactId> <name>Brave Instrumentation: Vert.x Web</name> <properties> <!-- Matches Export-Package in bnd.bnd --> <module.name>brave.vertx.web</module.name> <main.basedir>${project.basedir}/../..</main.basedir> <vertx.version>3.9.16</vertx.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>brave-instrumentation-http</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-web</artifactId> <version>${vertx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>brave-instrumentation-http-tests</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> </project>