Bump versions by x.(y+1).z
[serviceutils.git] / metrics / sample / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=2 tabstop=2: -->
3 <!--
4  Copyright © 2017 Red Hat, Inc. and others. All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.serviceutils</groupId>
15     <artifactId>quality-parent</artifactId>
16     <version>0.14.0-SNAPSHOT</version>
17     <relativePath>../../../commons/quality-parent</relativePath>
18   </parent>
19
20   <artifactId>metrics-sample</artifactId>
21   <packaging>bundle</packaging>
22   <name>ODL :: serviceutils :: ${project.artifactId}</name>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.opendaylight.infrautils</groupId>
27       <artifactId>infrautils-util</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.serviceutils</groupId>
31       <artifactId>metrics-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.guicedee.services</groupId>
35       <artifactId>javax.inject</artifactId>
36       <optional>true</optional>
37     </dependency>
38     <dependency>
39       <groupId>jakarta.annotation</groupId>
40       <artifactId>jakarta.annotation-api</artifactId>
41       <scope>provided</scope>
42       <optional>true</optional>
43     </dependency>
44     <dependency>
45       <groupId>org.osgi</groupId>
46       <artifactId>org.osgi.service.component.annotations</artifactId>
47     </dependency>
48
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>metrics-impl</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>metrics-impl-prometheus</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>io.prometheus</groupId>
61       <artifactId>simpleclient_httpserver</artifactId>
62       <version>0.10.0</version>
63       <!-- HTTPServer is only used in demos; in production we use the MetricsServlet -->
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.infrautils</groupId>
68       <artifactId>inject.guice.testutils</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.infrautils</groupId>
72       <artifactId>infrautils-testutils</artifactId>
73     </dependency>
74   </dependencies>
75 </project>