Move HashMapDb to its own bundle
[lispflowmapping.git] / mappingservice / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.lispflowmapping</groupId>
7     <artifactId>mappingservice-parent</artifactId>
8     <version>1.3.0-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>mappingservice.implementation</artifactId>
12   <packaging>bundle</packaging>
13   <name>Mapping Service Implementation</name>
14
15   <dependencies>
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>mappingservice.api</artifactId>
19       <version>${project.version}</version>
20     </dependency>
21     <dependency>
22         <groupId>${project.groupId}</groupId>
23         <artifactId>mappingservice.inmemorydb</artifactId>
24         <version>${project.version}</version>
25     </dependency>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>mappingservice.yangmodel</artifactId>
29       <version>${project.version}</version>
30     </dependency>
31
32     <!-- needed for osgi console -->
33     <dependency>
34       <groupId>equinoxSDK381</groupId>
35       <artifactId>org.eclipse.osgi</artifactId>
36     </dependency>
37   </dependencies>
38
39   <build>
40      <plugins>
41        <plugin>
42          <groupId>org.apache.felix</groupId>
43          <artifactId>maven-bundle-plugin</artifactId>
44          <extensions>true</extensions>
45          <configuration>
46            <instructions>
47              <Export-Package>
48                org.opendaylight.lispflowmapping.implementation,
49                org.opendaylight.lispflowmapping.implementation.serializer,
50                org.opendaylight.lispflowmapping.implementation.util
51              </Export-Package>
52            </instructions>
53          </configuration>
54        </plugin>
55      </plugins>
56    </build>
57 </project>