simpleclient_httpserver-0.15.0.pom 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.15.0</version>
  8. </parent>
  9. <artifactId>simpleclient_httpserver</artifactId>
  10. <packaging>bundle</packaging>
  11. <name>Prometheus Java Simpleclient Httpserver</name>
  12. <description>
  13. Httpserver exposition for the simpleclient.
  14. </description>
  15. <licenses>
  16. <license>
  17. <name>The Apache Software License, Version 2.0</name>
  18. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  19. <distribution>repo</distribution>
  20. </license>
  21. </licenses>
  22. <developers>
  23. <developer>
  24. <id>brian-brazil</id>
  25. <name>Brian Brazil</name>
  26. <email>brian.brazil@robustperception.io</email>
  27. </developer>
  28. </developers>
  29. <dependencies>
  30. <dependency>
  31. <groupId>io.prometheus</groupId>
  32. <artifactId>simpleclient</artifactId>
  33. <version>0.15.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.prometheus</groupId>
  37. <artifactId>simpleclient_common</artifactId>
  38. <version>0.15.0</version>
  39. </dependency>
  40. <!-- Test Dependencies Follow -->
  41. <dependency>
  42. <groupId>junit</groupId>
  43. <artifactId>junit</artifactId>
  44. <version>4.13.2</version>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.assertj</groupId>
  49. <artifactId>assertj-core</artifactId>
  50. <version>3.22.0</version>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>javax.xml.bind</groupId>
  55. <artifactId>jaxb-api</artifactId>
  56. <version>2.4.0-b180830.0359</version>
  57. <scope>test</scope>
  58. </dependency>
  59. </dependencies>
  60. </project>