Bump versions by x.(y+1).z for next dev cycle
[lispflowmapping.git] / mappingservice / southbound / 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.6.0-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>mappingservice.southbound</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   <dependencies>
18     <dependency>
19       <groupId>${project.groupId}</groupId>
20       <artifactId>mappingservice.api</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>${project.groupId}</groupId>
24       <artifactId>mappingservice.inmemorydb</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>mappingservice.dsbackend</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>mappingservice.lisp-proto</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>${project.groupId}</groupId>
36       <artifactId>mappingservice.mapcache</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>io.netty</groupId>
40       <artifactId>netty-buffer</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>io.netty</groupId>
44       <artifactId>netty-common</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>io.netty</groupId>
48       <artifactId>netty-transport-native-epoll</artifactId>
49       <classifier>linux-x86_64</classifier>
50     </dependency>
51     <dependency>
52       <groupId>junit-addons</groupId>
53       <artifactId>junit-addons</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.lispflowmapping</groupId>
57       <artifactId>common.unittest.tools</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.powermock</groupId>
61       <artifactId>powermock-api-mockito</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.powermock</groupId>
66       <artifactId>powermock-module-junit4</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.mdsal</groupId>
71       <artifactId>mdsal-singleton-common-api</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.mdsal</groupId>
75       <artifactId>mdsal-singleton-dom-impl</artifactId>
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>