brave-instrumentation-spring-rabbit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.zipkin.brave</groupId> <artifactId>brave-instrumentation-spring-rabbit</artifactId> <version>6.2.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.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>brave-instrumentation-spring-rabbit</artifactId> <name>Brave Instrumentation: Spring RabbitMQ</name> <properties> <!-- Matches Export-Package in bnd.bnd --> <module.name>brave.spring.rabbit</module.name> <main.basedir>${project.basedir}/../..</main.basedir> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>brave-instrumentation-messaging</artifactId> <version>${project.version}</version> </dependency> <!-- spring-aop is required for the consumer side instrumentation point --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${spring5.version}</version> <scope>provided</scope> </dependency> <!-- Spring 5 has GenericApplicationContext.registerBean which makes tests easier --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring5.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.amqp</groupId> <artifactId>spring-rabbit</artifactId> <version>${spring-rabbit.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>brave-tests</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring5.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <properties> <!-- Spring is Java 1.6 bytecode --> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> <maven.compiler.release>6</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>