Merge "added documentation to the yang model TELSDN-517: #close Signed-off-by: David...
[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                                                         org.opendaylight.lispflowmapping.type.sbplugin
31                                                 </Export-Package>
32                                                 <Import-Package>
33                                                         org.opendaylight.controller.sal.binding.api,
34                                                         org.opendaylight.yangtools.yang.binding,
35                                                          javax.xml.bind, 
36                                                          javax.xml.bind.annotation, 
37                                                          org.slf4j,
38                                                          org.opendaylight.yangtools.yang.common
39                                                 </Import-Package>
40                                                 <Bundle-Activator>
41                                                 </Bundle-Activator>
42                                                 <Service-Component>
43                                                 </Service-Component>
44                                         </instructions>
45                                 </configuration>
46                         </plugin>
47                 </plugins>
48         </build>
49         <dependencies>
50                 <dependency>
51                         <groupId>org.opendaylight.controller</groupId>
52                         <artifactId>sal-binding-api</artifactId>
53                 </dependency>
54                 <dependency>
55                         <groupId>org.opendaylight.controller</groupId>
56                         <artifactId>sal-common-util</artifactId>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.opendaylight.controller</groupId>
60                         <artifactId>sal</artifactId>
61                 </dependency>
62         </dependencies>
63 </project>