quarkus-amazon-opentelemetry-internal
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkiverse.amazonservices</groupId> <artifactId>quarkus-amazon-opentelemetry-internal</artifactId> <version>2.19.0</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.quarkiverse.amazonservices</groupId> <artifactId>quarkus-amazon-common-parent</artifactId> <version>2.19.0</version> </parent> <artifactId>quarkus-amazon-opentelemetry-internal</artifactId> <name>Quarkus - Amazon Services - OpenTelemetry - Runtime - Internal</name> <description>This module only exists to house opentelemetry-aws-sdk-2.2 as a conditional dependency</description> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-core</artifactId> </dependency> <dependency> <groupId>io.opentelemetry.instrumentation</groupId> <artifactId>opentelemetry-aws-sdk-2.2</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-maven-plugin</artifactId> <version>${quarkus.version}</version> <executions> <execution> <phase>process-resources</phase> <goals> <goal>extension-descriptor</goal> </goals> <configuration> <dependencyCondition> <artifact>io.quarkus:quarkus-opentelemetry</artifact> </dependencyCondition> </configuration> </execution> </executions> </plugin> <plugin> <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>