initial Mapping Service code upload
[lispflowmapping.git] / mappingservice / implementation / 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.implementation</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.implementation
26                                                 </Export-Package>
27                                                 <Import-Package>
28                                                         org.opendaylight.controller.sal.core,
29                                                         org.apache.felix.dm,
30                                                         org.apache.commons.lang3.builder,
31                                                         org.osgi.service.component,
32                                                         org.slf4j,
33                                                         org.eclipse.osgi.framework.console,
34                                                         org.osgi.framework,
35                                                         org.opendaylight.lispflowmapping,
36                                                         org.opendaylight.lispflowmapping.dao, 
37                                                         org.opendaylight.lispflowmapping.lisp, 
38                                                         org.opendaylight.lispflowmapping.type.exception, 
39                                                         org.opendaylight.lispflowmapping.type.lisp, 
40                                                         org.opendaylight.lispflowmapping.type.lisp.address, 
41                                                         org.opendaylight.lispflowmapping.util,
42                                                         org.opendaylight.controller.clustering.services
43                                                 </Import-Package>
44                                                 <Bundle-Activator>
45                                                         org.opendaylight.lispflowmapping.implementation.Activator
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>clustering.services</artifactId>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.opendaylight.controller</groupId>
61                         <artifactId>sal</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         </dependencies>
69 </project>