Add explicit org.osgi.core dependency
[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.8.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>org.osgi</groupId>
20       <artifactId>org.osgi.core</artifactId>
21       <scope>provided</scope>
22     </dependency>
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>mappingservice.api</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>${project.groupId}</groupId>
29       <artifactId>mappingservice.config</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>mappingservice.inmemorydb</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>mappingservice.dsbackend</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>${project.groupId}</groupId>
41       <artifactId>mappingservice.lisp-proto</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>mappingservice.mapcache</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>io.netty</groupId>
49       <artifactId>netty-buffer</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>io.netty</groupId>
53       <artifactId>netty-common</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>io.netty</groupId>
57       <artifactId>netty-transport-native-epoll</artifactId>
58       <classifier>linux-x86_64</classifier>
59     </dependency>
60     <dependency>
61       <groupId>junit-addons</groupId>
62       <artifactId>junit-addons</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.lispflowmapping</groupId>
66       <artifactId>common.unittest.tools</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.powermock</groupId>
70       <artifactId>powermock-api-mockito</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.powermock</groupId>
75       <artifactId>powermock-module-junit4</artifactId>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.mdsal</groupId>
80       <artifactId>mdsal-singleton-common-api</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.mdsal</groupId>
84       <artifactId>mdsal-singleton-dom-impl</artifactId>
85     </dependency>
86   </dependencies>
87
88   <!--
89       Maven Site Configuration
90
91       The following configuration is necessary for maven-site-plugin to
92       correctly identify the correct deployment path for OpenDaylight Maven
93       sites.
94   -->
95   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
96
97   <distributionManagement>
98     <site>
99       <id>opendaylight-site</id>
100       <url>${nexus.site.url}/${project.artifactId}/</url>
101     </site>
102   </distributionManagement>
103
104 </project>