Bump versions by x.y.(z+1)
[neutron.git] / neutron-hostconfig / ovs / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2018 Intel Corporation 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" 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.neutron</groupId>
14     <artifactId>project-neutron-parent</artifactId>
15     <version>0.12.3-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.neutron</groupId>
20   <artifactId>neutron-hostconfig-ovs</artifactId>
21   <version>0.12.3-SNAPSHOT</version>
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 :: neutron :: ${project.artifactId}</name>
26
27   <dependencies>
28     <dependency>
29       <groupId>org.opendaylight.neutron</groupId>
30       <artifactId>neutron-spi</artifactId>
31       <version>${project.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.neutron</groupId>
35       <artifactId>model</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.ovsdb</groupId>
40       <artifactId>utils.mdsal-utils</artifactId>
41       <version>1.8.3-SNAPSHOT</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.ovsdb</groupId>
45       <artifactId>utils.southbound-utils</artifactId>
46       <version>1.8.3-SNAPSHOT</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.neutron</groupId>
50       <artifactId>neutron-hostconfig-utils</artifactId>
51       <version>${project.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.slf4j</groupId>
55       <artifactId>slf4j-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>javax.inject</groupId>
59       <artifactId>javax.inject</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>javax.annotation</groupId>
63       <artifactId>javax.annotation-api</artifactId>
64       <optional>true</optional>
65     </dependency>
66   </dependencies>
67   <build>
68     <plugins>
69       <plugin>
70         <groupId>org.apache.aries.blueprint</groupId>
71         <artifactId>blueprint-maven-plugin</artifactId>
72       </plugin>
73     </plugins>
74   </build>
75   <scm>
76     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
77     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
78     <tag>HEAD</tag>
79     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
80   </scm>
81 </project>