Bump versions by x.(y+1).z for next dev cycle
[genius.git] / alivenessmonitor / alivenessmonitor-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 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 <!--suppress MavenDuplicateDependenciesInspection -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.genius</groupId>
16     <artifactId>binding-parent</artifactId>
17     <version>0.6.0-SNAPSHOT</version>
18     <relativePath>../../commons/binding-parent</relativePath>
19   </parent>
20
21   <artifactId>alivenessmonitor-impl</artifactId>
22   <packaging>bundle</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 :: genius :: ${project.artifactId}</name>
26
27   <dependencyManagement>
28     <dependencies>
29       <dependency>
30         <groupId>org.opendaylight.genius</groupId>
31         <artifactId>genius-artifacts</artifactId>
32         <version>${project.version}</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36       <dependency>
37         <groupId>org.opendaylight.openflowplugin</groupId>
38         <artifactId>openflowplugin-artifacts</artifactId>
39         <version>${openflowplugin.version}</version>
40         <type>pom</type>
41         <scope>import</scope>
42       </dependency>
43       <dependency>
44         <groupId>org.opendaylight.serviceutils</groupId>
45         <artifactId>serviceutils-artifacts</artifactId>
46         <version>0.3.0-SNAPSHOT</version>
47         <type>pom</type>
48         <scope>import</scope>
49       </dependency>
50     </dependencies>
51   </dependencyManagement>
52
53   <dependencies>
54     <dependency>
55       <groupId>org.opendaylight.genius</groupId>
56       <artifactId>alivenessmonitor-api</artifactId>
57       <version>${project.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.serviceutils</groupId>
61       <artifactId>tools-api</artifactId>
62       <version>0.3.0-SNAPSHOT</version>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.genius</groupId>
66       <artifactId>mdsalutil-api</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.openflowplugin.model</groupId>
70       <artifactId>model-flow-service</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.openflowplugin.libraries</groupId>
74       <artifactId>liblldp</artifactId>
75       <version>${openflowplugin.version}</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller.model</groupId>
79       <artifactId>model-inventory</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.mdsal.model</groupId>
83       <artifactId>ietf-interfaces</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.genius</groupId>
87       <artifactId>idmanager-api</artifactId>
88       <version>${project.version}</version>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.genius</groupId>
92       <artifactId>ipv6util-api</artifactId>
93       <version>${project.version}</version>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.controller</groupId>
97       <artifactId>sal-binding-broker-impl</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>javax.inject</groupId>
101       <artifactId>javax.inject</artifactId>
102     </dependency>
103   </dependencies>
104   <build>
105     <plugins>
106       <plugin>
107         <groupId>org.apache.aries.blueprint</groupId>
108         <artifactId>blueprint-maven-plugin</artifactId>
109       </plugin>
110     </plugins>
111   </build>
112 </project>