brave
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.zipkin.brave</groupId> <artifactId>brave</artifactId> <version>6.1.0</version> </dependency>
<!-- 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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.zipkin.brave</groupId> <artifactId>brave-parent</artifactId> <version>6.1.0</version> </parent> <artifactId>brave</artifactId> <packaging>jar</packaging> <name>Brave</name> <description>Brave: Core Libary</description> <properties> <!-- Matches Export-Package in bnd.bnd --> <module.name>brave</module.name> <main.basedir>${project.basedir}/..</main.basedir> <!-- disable errorprone cast warning as PendingSpans internally hacks equals --> <errorprone.args>-Xep:EqualsUnsafeCast:OFF</errorprone.args> </properties> <dependencies> <!-- To show off SpanHandler --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.blogspot.mydailyjava</groupId> <artifactId>weak-lock-free</artifactId> <version>0.18</version> <scope>test</scope> </dependency> <dependency> <groupId>io.opentracing</groupId> <artifactId>opentracing-api</artifactId> <version>0.33.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>mockwebserver</artifactId> <version>${okhttp4.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-core</artifactId> <version>${grpc.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.twitter</groupId> <artifactId>finagle-core_2.12</artifactId> <version>${finagle.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-core</artifactId> <version>1.12.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring5.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.19</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring5.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-invoker-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <properties> <!-- The brave jar needs to be Java 1.6 bytecode --> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> <!-- Clear the release tag, so that we can compile Platform without errors and without changing the end bytecode to 1.8 --> <maven.compiler.release /> </properties> <build> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <id>enforce-java</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <!-- The only LTS JDK we support that can compile 1.6 bytecode is 11. https://www.oracle.com/java/technologies/javase/12-relnote-issues.html --> <requireJavaVersion> <version>[11,12)</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>