Bump versions by x.(y+1).z
[serviceutils.git] / artifacts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2018 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 INTERNAL
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.odlparent</groupId>
14     <artifactId>odlparent-lite</artifactId>
15     <version>9.0.6</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.serviceutils</groupId>
20   <artifactId>serviceutils-artifacts</artifactId>
21   <version>0.9.0-SNAPSHOT</version>
22   <packaging>pom</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: serviceutils :: ${project.artifactId}</name>
26
27   <dependencyManagement>
28     <dependencies>
29       <!-- Artifacts for downstream use -->
30       <dependency>
31         <groupId>${project.groupId}</groupId>
32         <artifactId>listener-api</artifactId>
33         <version>0.9.0-SNAPSHOT</version>
34       </dependency>
35       <dependency>
36         <groupId>${project.groupId}</groupId>
37         <artifactId>rpc-api</artifactId>
38         <version>0.9.0-SNAPSHOT</version>
39       </dependency>
40       <dependency>
41         <groupId>${project.groupId}</groupId>
42         <artifactId>srm-api</artifactId>
43         <version>0.9.0-SNAPSHOT</version>
44       </dependency>
45       <dependency>
46         <groupId>${project.groupId}</groupId>
47         <artifactId>tools-api</artifactId>
48         <version>0.9.0-SNAPSHOT</version>
49       </dependency>
50       <dependency>
51         <groupId>${project.groupId}</groupId>
52         <artifactId>upgrade</artifactId>
53         <version>0.9.0-SNAPSHOT</version>
54       </dependency>
55
56       <!-- Reference implementations -->
57       <dependency>
58         <groupId>${project.groupId}</groupId>
59         <artifactId>srm-impl</artifactId>
60         <version>0.9.0-SNAPSHOT</version>
61       </dependency>
62
63       <!-- Test support -->
64       <dependency>
65         <groupId>${project.groupId}</groupId>
66         <artifactId>tools-testutils</artifactId>
67         <version>0.9.0-SNAPSHOT</version>
68         <scope>test</scope>
69       </dependency>
70
71       <!-- Karaf Features -->
72       <dependency>
73         <groupId>${project.groupId}</groupId>
74         <artifactId>serviceutils-features</artifactId>
75         <version>${project.version}</version>
76         <classifier>features</classifier>
77         <type>xml</type>
78       </dependency>
79       <dependency>
80         <groupId>${project.groupId}</groupId>
81         <artifactId>odl-serviceutils-listener</artifactId>
82         <version>${project.version}</version>
83         <classifier>features</classifier>
84         <type>xml</type>
85       </dependency>
86       <dependency>
87         <groupId>${project.groupId}</groupId>
88         <artifactId>odl-serviceutils-rpc</artifactId>
89         <version>${project.version}</version>
90         <classifier>features</classifier>
91         <type>xml</type>
92       </dependency>
93       <dependency>
94         <groupId>${project.groupId}</groupId>
95         <artifactId>odl-serviceutils-srm</artifactId>
96         <version>${project.version}</version>
97         <classifier>features</classifier>
98         <type>xml</type>
99       </dependency>
100       <dependency>
101         <groupId>${project.groupId}</groupId>
102         <artifactId>odl-serviceutils-tools</artifactId>
103         <version>${project.version}</version>
104         <classifier>features</classifier>
105         <type>xml</type>
106       </dependency>
107     </dependencies>
108   </dependencyManagement>
109 </project>