brave-instrumentation-jms-jakarta
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.zipkin.brave</groupId> <artifactId>brave-instrumentation-jms-jakarta</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-jms-jakarta</artifactId> <name>Brave Instrumentation: JMS (Jakarta)</name> <properties> <!-- Matches Export-Package in bnd.bnd --> <module.name>brave.jakarta.jms</module.name> <main.basedir>${project.basedir}/../..</main.basedir> <!-- disable errorprone override warning as we do this intentionally to allow JMS 1.1 --> <errorprone.args>-Xep:MissingOverride:OFF</errorprone.args> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>brave-instrumentation-messaging</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>jakarta.jms</groupId> <artifactId>jakarta.jms-api</artifactId> <version>3.1.0</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.apache.activemq</groupId> <artifactId>artemis-jakarta-server</artifactId> <version>${activemq.artemis.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/PropertyFilterTest.class</exclude> </excludes> </configuration> <executions> <execution> <id>PropertyFilterTest</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <includes> <include>**/PropertyFilterTest.class</include> </includes> <excludes combine.self="override" /> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-invoker-plugin</artifactId> </plugin> </plugins> </build> </project>