Bump versions by x.(y+1).z
[serviceutils.git] / srm / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 Ericsson India Global Services Pvt Ltd. 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"
10   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.13.0-SNAPSHOT</version>
17     <relativePath>../../commons/quality-parent</relativePath>
18   </parent>
19
20   <artifactId>srm-impl</artifactId>
21   <packaging>bundle</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: serviceutils :: ${project.artifactId}</name>
25
26   <dependencies>
27     <dependency>
28       <groupId>${project.groupId}</groupId>
29       <artifactId>srm-api</artifactId>
30       <version>${project.version}</version>
31     </dependency>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>rpc-api</artifactId>
35       <version>${project.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>${project.groupId}</groupId>
39       <artifactId>tools-api</artifactId>
40       <version>${project.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.mdsal</groupId>
44       <artifactId>mdsal-binding-api</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>com.guicedee.services</groupId>
48       <artifactId>javax.inject</artifactId>
49       <optional>true</optional>
50     </dependency>
51     <dependency>
52       <groupId>jakarta.annotation</groupId>
53       <artifactId>jakarta.annotation-api</artifactId>
54       <optional>true</optional>
55     </dependency>
56     <dependency>
57       <groupId>org.osgi</groupId>
58       <artifactId>org.osgi.service.component.annotations</artifactId>
59     </dependency>
60   </dependencies>
61 </project>