Converting the LispSB to MD-SAL plugin. The phase before writing everything in YANG...
[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         <packaging>bundle</packaging>
14         <build>
15                 <plugins>
16                         <plugin>
17                                 <groupId>org.apache.felix</groupId>
18                                 <artifactId>maven-bundle-plugin</artifactId>
19                                 <extensions>true</extensions>
20                                 <configuration>
21                                         <instructions>
22                                                 <Export-Package>
23                                                 </Export-Package>
24                                                 <Import-Package>
25                                                         org.opendaylight.controller.sal.core,
26                                                         org.apache.felix.dm,
27                                                         org.apache.commons.lang3.builder,
28                                                         org.osgi.service.component,
29                                                         org.slf4j,
30                                                         org.eclipse.osgi.framework.console,
31                                                         org.osgi.framework,
32                                                         org.opendaylight.lispflowmapping.interfaces.lisp,
33                                                         org.opendaylight.lispflowmapping.type,
34                                                         org.opendaylight.lispflowmapping.type.lisp,
35                                                         org.opendaylight.lispflowmapping.type.lisp.address,
36                                                         org.opendaylight.lispflowmapping.type.sbplugin,
37                                                         org.opendaylight.controller.clustering.services,
38                                                         org.opendaylight.lispflowmapping.implementation.serializer,
39                                                         org.opendaylight.lispflowmapping.implementation.util,
40                                                         org.opendaylight.controller.sal.binding.api,
41                                                         org.opendaylight.yangtools.yang.binding,
42                                                         org.opendaylight.yangtools.yang.common
43                                                 </Import-Package>
44                                                 <Bundle-Activator>
45                                                         org.opendaylight.lispflowmapping.southbound.LispSouthboundPlugin
46                                                 </Bundle-Activator>
47                                                 <Service-Component>
48                                                 </Service-Component>
49                                         </instructions>
50                                 </configuration>
51                         </plugin>
52                 </plugins>
53         </build>
54         <dependencies>
55                 <dependency>
56                         <groupId>org.opendaylight.controller</groupId>
57                         <artifactId>sal-binding-api</artifactId>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.opendaylight.controller</groupId>
61                         <artifactId>sal-common-util</artifactId>
62                 </dependency>
63                 <dependency>
64                         <groupId>org.opendaylight.lispflowmapping</groupId>
65                         <artifactId>mappingservice.api</artifactId>
66                         <version>0.1.0-SNAPSHOT</version>
67                 </dependency>
68                 <dependency>
69                         <groupId>org.opendaylight.lispflowmapping</groupId>
70                         <artifactId>mappingservice.implementation</artifactId>
71                         <version>0.1.0-SNAPSHOT</version>
72                 </dependency>
73         </dependencies>
74 </project>