|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <parent> |
| 8 | + <groupId>io.prometheus</groupId> |
| 9 | + <artifactId>client_java</artifactId> |
| 10 | + <version>1.5.0-SNAPSHOT</version> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <artifactId>prometheus-metrics-otel-support</artifactId> |
| 14 | + <packaging>pom</packaging> |
| 15 | + |
| 16 | + <name>Prometheus Metrics OpenTelemetry Support</name> |
| 17 | + <description> |
| 18 | + Bundles the OpenTelemetry SDK and Prometheus exporter so that users |
| 19 | + who want to combine OTel instrumentations with the Prometheus Java |
| 20 | + client only need a single dependency. |
| 21 | + </description> |
| 22 | + |
| 23 | + <properties> |
| 24 | + <checkstyle.skip>true</checkstyle.skip> |
| 25 | + <coverage.skip>true</coverage.skip> |
| 26 | + <spotless.skip>true</spotless.skip> |
| 27 | + <javadoc.skip>true</javadoc.skip> |
| 28 | + </properties> |
| 29 | + |
| 30 | + <dependencyManagement> |
| 31 | + <dependencies> |
| 32 | + <dependency> |
| 33 | + <groupId>io.opentelemetry.instrumentation</groupId> |
| 34 | + <artifactId>opentelemetry-instrumentation-bom-alpha</artifactId> |
| 35 | + <version>${otel.instrumentation.version}</version> |
| 36 | + <type>pom</type> |
| 37 | + <scope>import</scope> |
| 38 | + </dependency> |
| 39 | + </dependencies> |
| 40 | + </dependencyManagement> |
| 41 | + |
| 42 | + <dependencies> |
| 43 | + <dependency> |
| 44 | + <groupId>io.opentelemetry</groupId> |
| 45 | + <artifactId>opentelemetry-sdk</artifactId> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>io.opentelemetry</groupId> |
| 49 | + <artifactId>opentelemetry-exporter-prometheus</artifactId> |
| 50 | + </dependency> |
| 51 | + </dependencies> |
| 52 | +</project> |
0 commit comments