Add Neutron host-id to RLOC mapping
[lispflowmapping.git] / mappingservice / neutron / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.lispflowmapping</groupId>
7     <artifactId>mappingservice-parent</artifactId>
8     <version>1.5.0-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>mappingservice.neutron</artifactId>
12   <packaging>bundle</packaging>
13   <!-- <name> formatting is used by autorelease to parse and notify projects on
14        build failure. Please do not modify this unless you have a good reason. -->
15   <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
16
17   <dependencyManagement>
18     <dependencies>
19       <dependency>
20         <groupId>org.opendaylight.netconf</groupId>
21         <artifactId>netconf-artifacts</artifactId>
22         <version>1.2.0-SNAPSHOT</version>
23         <type>pom</type>
24         <scope>import</scope>
25       </dependency>
26       <dependency>
27         <groupId>org.opendaylight.controller</groupId>
28         <artifactId>mdsal-artifacts</artifactId>
29         <version>1.5.0-SNAPSHOT</version>
30         <type>pom</type>
31         <scope>import</scope>
32       </dependency>
33     </dependencies>
34   </dependencyManagement>
35
36   <dependencies>
37     <dependency>
38       <groupId>org.opendaylight.lispflowmapping</groupId>
39       <artifactId>mappingservice.api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.lispflowmapping</groupId>
43       <artifactId>mappingservice.lisp-proto</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-binding-api</artifactId>
48       <version>1.5.0-SNAPSHOT</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.neutron</groupId>
52       <artifactId>model</artifactId>
53       <version>0.8.0-SNAPSHOT</version>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.lispflowmapping</groupId>
57       <artifactId>common.unittest.tools</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.mdsal.model</groupId>
61       <artifactId>yang-ext</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.honeycomb.vbd</groupId>
65       <artifactId>vbd-api</artifactId>
66       <version>1.1.0-SNAPSHOT</version>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.netconf</groupId>
70       <artifactId>sal-netconf-connector</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.mdsal</groupId>
74       <artifactId>mdsal-singleton-common-api</artifactId>
75       <version>2.2.0-SNAPSHOT</version>
76     </dependency>
77   </dependencies>
78
79   <!--
80       Maven Site Configuration
81
82       The following configuration is necessary for maven-site-plugin to
83       correctly identify the correct deployment path for OpenDaylight Maven
84       sites.
85   -->
86   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
87
88   <distributionManagement>
89     <site>
90       <id>opendaylight-site</id>
91       <url>${nexus.site.url}/${project.artifactId}/</url>
92     </site>
93   </distributionManagement>
94
95 </project>