refactoring of listmappingservice into Northbound (future REST) and Southbound (LISP...
[lispflowmapping.git] / mappingservice / api / 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.api</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                                                         org.opendaylight.lispflowmapping.interfaces.dao, 
26                                                         org.opendaylight.lispflowmapping.interfaces.lisp,
27                                                         org.opendaylight.lispflowmapping.type, 
28                                                         org.opendaylight.lispflowmapping.type.lisp, 
29                                                         org.opendaylight.lispflowmapping.type.lisp.address 
30                                                 </Export-Package>
31                                                 <Bundle-Activator>
32                                                 </Bundle-Activator>
33                                                 <Service-Component>
34                                                 </Service-Component>
35                                         </instructions>
36                                 </configuration>
37                         </plugin>
38                 </plugins>
39         </build>
40         <dependencies>
41                 <dependency>
42                         <groupId>org.opendaylight.controller</groupId>
43                         <artifactId>sal</artifactId>
44                 </dependency>
45         </dependencies>
46 </project>