simpleclient_tracer_otel-0.16.0.pom 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.16.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. <optional>true</optional>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-compiler-plugin</artifactId>
  30. <configuration>
  31. <source>1.8</source>
  32. <target>1.8</target>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. <licenses>
  38. <license>
  39. <name>The Apache Software License, Version 2.0</name>
  40. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  41. <distribution>repo</distribution>
  42. </license>
  43. </licenses>
  44. </project>