brave-instrumentation-okhttp3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.zipkin.brave</groupId> <artifactId>brave-instrumentation-okhttp3</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-okhttp3</artifactId> <name>Brave Instrumentation: OkHttp v3.x</name> <properties> <!-- Matches Export-Package in bnd.bnd --> <module.name>brave.okhttp3</module.name> <main.basedir>${project.basedir}/../..</main.basedir> <!-- Last version before Call.timeout was added --> <floor-okhttp.version>3.11.0</floor-okhttp.version> <retrofit.version>2.11.0</retrofit.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>brave-instrumentation-http</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>${okhttp4.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> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>retrofit</artifactId> <version>${retrofit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-invoker-plugin</artifactId> </plugin> <plugin> <groupId>de.qaware.maven</groupId> <artifactId>go-offline-maven-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>resolve-dependencies</goal> </goals> </execution> </executions> <configuration> <!-- Add dependencies specific to invoker tests so that they cache on go-offline --> <dynamicDependencies> <DynamicDependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>mockwebserver</artifactId> <version>${floor-okhttp.version}</version> <repositoryType>MAIN</repositoryType> <type>jar</type> </DynamicDependency> </dynamicDependencies> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <properties> <!-- OkHttp 3.x is Java 1.7 bytecode --> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> <maven.compiler.release>7</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>