Bump versions by x.(y+1).z
[serviceutils.git] / tools / listener-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <parent>
8         <groupId>org.opendaylight.serviceutils</groupId>
9         <artifactId>quality-parent</artifactId>
10         <version>0.12.0-SNAPSHOT</version>
11         <relativePath>../../commons/quality-parent</relativePath>
12     </parent>
13
14     <groupId>org.opendaylight.serviceutils</groupId>
15     <artifactId>listener-api</artifactId>
16     <version>0.12.0-SNAPSHOT</version>
17     <packaging>bundle</packaging>
18
19     <dependencies>
20         <dependency>
21             <groupId>com.guicedee.services</groupId>
22             <artifactId>javax.inject</artifactId>
23             <optional>true</optional>
24         </dependency>
25         <dependency>
26             <groupId>jakarta.annotation</groupId>
27             <artifactId>jakarta.annotation-api</artifactId>
28             <scope>provided</scope>
29             <optional>true</optional>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.serviceutils</groupId>
33             <artifactId>metrics-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>concepts</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.mdsal</groupId>
41             <artifactId>mdsal-common-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.mdsal</groupId>
45             <artifactId>mdsal-binding-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal</groupId>
49             <artifactId>yang-binding</artifactId>
50         </dependency>
51     </dependencies>
52 </project>