quarkus-cxf-integration-tracing-opentelemetry
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkiverse.cxf</groupId> <artifactId>quarkus-cxf-integration-tracing-opentelemetry</artifactId> <version>3.16.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.quarkiverse.cxf</groupId> <artifactId>quarkus-cxf-integration-tracing-opentelemetry-parent</artifactId> <version>3.16.1</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>quarkus-cxf-integration-tracing-opentelemetry</artifactId> <name>Quarkus CXF - OpenTelemetry</name> <description>Collect metrics using https://micrometer.io/[Micrometer].</description> <properties> <cq.since>2.7.0</cq.since> </properties> <dependencies> <dependency> <groupId>io.quarkiverse.cxf</groupId> <artifactId>quarkus-cxf</artifactId> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-integration-tracing-opentelemetry</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-opentelemetry</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-maven-plugin</artifactId> <executions> <execution> <goals> <goal>extension-descriptor</goal> </goals> <phase>compile</phase> <configuration> <deployment>${project.groupId}:${project.artifactId}-deployment:${project.version} </deployment> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.l2x6.cq</groupId> <artifactId>cq-maven-plugin</artifactId> <executions> <execution> <id>update-doc-page</id> <goals> <goal>update-doc-page</goal> </goals> <phase>process-classes</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-processor</artifactId> <version>${quarkus.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> </project>