simpleclient_tracer_otel-0.15.0.pom 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>io.prometheus</groupId>
  6. <artifactId>simpleclient_tracer</artifactId>
  7. <version>0.15.0</version>
  8. </parent>
  9. <artifactId>simpleclient_tracer_otel</artifactId>
  10. <packaging>bundle</packaging>
  11. <name>Prometheus Java Span Context Supplier - OpenTelemetry</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.prometheus</groupId>
  15. <artifactId>simpleclient_tracer_common</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>io.opentelemetry</groupId>
  20. <artifactId>opentelemetry-api</artifactId>
  21. <scope>provided</scope>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.apache.maven.plugins</groupId>
  28. <artifactId>maven-compiler-plugin</artifactId>
  29. <configuration>
  30. <source>1.8</source>
  31. <target>1.8</target>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. <licenses>
  37. <license>
  38. <name>The Apache Software License, Version 2.0</name>
  39. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  40. <distribution>repo</distribution>
  41. </license>
  42. </licenses>
  43. </project>