Test a commit to check if it build triggered
[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         <!-- test change -->
15         <packaging>bundle</packaging>
16         <build>
17                 <plugins>
18                         <plugin>
19                                 <groupId>org.apache.felix</groupId>
20                                 <artifactId>maven-bundle-plugin</artifactId>
21                                 <!--version>2.3.6</version -->
22                                 <extensions>true</extensions>
23                                 <configuration>
24                                         <instructions>
25                                                 <Export-Package>
26                                                         org.opendaylight.lispflowmapping.interfaces.dao,
27                                                         org.opendaylight.lispflowmapping.interfaces.lisp,
28                                                         org.opendaylight.lispflowmapping.type,
29                                                         org.opendaylight.lispflowmapping.type.lisp,
30                                                         org.opendaylight.lispflowmapping.type.lisp.address,
31                                                         org.opendaylight.lispflowmapping.type.sbplugin
32                                                 </Export-Package>
33                                                 <Import-Package>
34                                                         org.opendaylight.controller.sal.binding.api,
35                                                         org.opendaylight.yangtools.yang.binding,
36                                                          javax.xml.bind, 
37                                                          javax.xml.bind.annotation, 
38                                                          org.slf4j,
39                                                          org.opendaylight.yangtools.yang.common
40                                                 </Import-Package>
41                                                 <Bundle-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.controller</groupId>
53                         <artifactId>sal-binding-api</artifactId>
54                 </dependency>
55                 <dependency>
56                         <groupId>org.opendaylight.controller</groupId>
57                         <artifactId>sal-common-util</artifactId>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.opendaylight.controller</groupId>
61                         <artifactId>sal</artifactId>
62                 </dependency>
63         </dependencies>
64 </project>