Bump versions to 1.9.0-SNAPSHOT
[serviceutils.git] / metrics / impl-prometheus / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2017 Red Hat, Inc. and others. All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.infrautils</groupId>
14     <artifactId>parent</artifactId>
15     <version>1.9.0-SNAPSHOT</version>
16     <relativePath>../../common/parent</relativePath>
17   </parent>
18
19   <artifactId>metrics-impl-prometheus</artifactId>
20   <packaging>bundle</packaging>
21   <!-- <name> formatting is used by autorelease to parse and notify projects on
22        build failure. Please do not modify this unless you have a good reason. -->
23   <name>ODL :: infrautils :: ${project.artifactId}</name>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.infrautils</groupId>
28       <artifactId>metrics-api</artifactId>
29     </dependency>
30
31     <dependency>
32       <groupId>io.prometheus</groupId>
33       <artifactId>simpleclient</artifactId>
34       <version>0.9.0</version>
35     </dependency>
36     <dependency>
37       <groupId>io.prometheus</groupId>
38       <artifactId>simpleclient_hotspot</artifactId>
39       <version>0.9.0</version>
40     </dependency>
41 <!-- TODO integrate with caches/impl/guava/ (or, better, straight go for Caffeine Cache)
42     <dependency>
43       <groupId>io.prometheus</groupId>
44       <artifactId>simpleclient_guava</artifactId>
45       <version>0.9.0</version>
46     </dependency>
47 -->
48
49     <dependency>
50       <groupId>javax.servlet</groupId>
51       <artifactId>javax.servlet-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>io.prometheus</groupId>
55       <artifactId>simpleclient_servlet</artifactId>
56       <version>0.9.0</version>
57     </dependency>
58     <dependency>
59       <groupId>org.osgi</groupId>
60       <artifactId>osgi.cmpn</artifactId>
61     </dependency>
62
63     <dependency>
64       <groupId>org.opendaylight.infrautils</groupId>
65       <artifactId>infrautils-util</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>javax.inject</groupId>
69       <artifactId>javax.inject</artifactId>
70       <scope>provided</scope>
71       <optional>true</optional>
72     </dependency>
73     <dependency>
74       <groupId>javax.annotation</groupId>
75       <artifactId>javax.annotation-api</artifactId>
76       <scope>provided</scope>
77       <optional>true</optional>
78     </dependency>
79
80     <dependency>
81       <groupId>org.opendaylight.infrautils</groupId>
82       <artifactId>infrautils-testutils</artifactId>
83     </dependency>
84   </dependencies>
85 </project>