simpleclient-0.10.0.pom 1.6 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>parent</artifactId>
  7. <version>0.10.0</version>
  8. </parent>
  9. <groupId>io.prometheus</groupId>
  10. <artifactId>simpleclient</artifactId>
  11. <packaging>bundle</packaging>
  12. <name>Prometheus Java Simpleclient</name>
  13. <description>
  14. Core instrumentation library for the simpleclient.
  15. </description>
  16. <licenses>
  17. <license>
  18. <name>The Apache Software License, Version 2.0</name>
  19. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  20. <distribution>repo</distribution>
  21. </license>
  22. </licenses>
  23. <developers>
  24. <developer>
  25. <id>brian-brazil</id>
  26. <name>Brian Brazil</name>
  27. <email>brian.brazil@boxever.com</email>
  28. </developer>
  29. </developers>
  30. <dependencies>
  31. <!-- The simpleclient has no dependencies by design, so that
  32. it can be included into any other project without having
  33. to worry about conflicts. -->
  34. <!-- Test Dependencies Follow -->
  35. <dependency>
  36. <groupId>junit</groupId>
  37. <artifactId>junit</artifactId>
  38. <version>4.13.1</version>
  39. <scope>test</scope>
  40. </dependency>
  41. </dependencies>
  42. </project>