simpleclient_common-0.8.1.pom 1.6 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>parent</artifactId>
  7. <version>0.8.1</version>
  8. </parent>
  9. <groupId>io.prometheus</groupId>
  10. <artifactId>simpleclient_common</artifactId>
  11. <packaging>bundle</packaging>
  12. <name>Prometheus Java Simpleclient Common</name>
  13. <description>
  14. Common code used by various modules of 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. <dependency>
  32. <groupId>io.prometheus</groupId>
  33. <artifactId>simpleclient</artifactId>
  34. <version>0.8.1</version>
  35. </dependency>
  36. <!-- Test Dependencies Follow -->
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <version>4.11</version>
  41. <scope>test</scope>
  42. </dependency>
  43. </dependencies>
  44. </project>