refactoring of listmappingservice into Northbound (future REST) and Southbound (LISP...
[lispflowmapping.git] / mappingservice / southbound / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7                 <groupId>org.opendaylight.lispflowmapping</groupId>
8                 <artifactId>mappingservice-parent</artifactId>
9                 <version>0.1.0-SNAPSHOT</version>
10                 <relativePath>..</relativePath>
11         </parent>
12         <artifactId>mappingservice.southbound</artifactId>
13         <version>0.1.0-SNAPSHOT</version>
14         <packaging>bundle</packaging>
15         <build>
16                 <plugins>
17                         <plugin>
18                                 <groupId>org.apache.felix</groupId>
19                                 <artifactId>maven-bundle-plugin</artifactId>
20                                 <!--version>2.3.6</version-->
21                                 <extensions>true</extensions>
22                                 <configuration>
23                                         <instructions>
24                                                 <Export-Package>
25                                                 </Export-Package>
26                                                 <Import-Package>
27                                                         org.opendaylight.controller.sal.core,
28                                                         org.apache.felix.dm,
29                                                         org.apache.commons.lang3.builder,
30                                                         org.osgi.service.component,
31                                                         org.slf4j,
32                                                         org.eclipse.osgi.framework.console,
33                                                         org.osgi.framework,
34                                                         org.opendaylight.lispflowmapping.interfaces.lisp,
35                                                         org.opendaylight.lispflowmapping.type,  
36                                                         org.opendaylight.lispflowmapping.type.lisp, 
37                                                         org.opendaylight.lispflowmapping.type.lisp.address, 
38                                                         org.opendaylight.controller.clustering.services
39                                                 </Import-Package>
40                                                 <Bundle-Activator>
41                                                         org.opendaylight.lispflowmapping.southbound.Activator
42                                                 </Bundle-Activator>
43                                                 <Service-Component>
44                                                 </Service-Component>
45                                         </instructions>
46                                 </configuration>
47                         </plugin>
48                 </plugins>
49         </build>
50         <dependencies>
51                 <dependency>
52                         <groupId>org.opendaylight.lispflowmapping</groupId>
53                         <artifactId>mappingservice.api</artifactId>
54                         <version>0.1.0-SNAPSHOT</version>
55                 </dependency>
56         </dependencies>
57 </project>