e95989541a12d70430edec7c763ce5bf6acd8781
[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   <groupId>org.opendaylight.lispflowmapping</groupId>
12   <artifactId>mappingservice.implementation</artifactId>
13   <version>1.3.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <name>Mapping Service Implementation</name>
16
17   <dependencies>
18     <dependency>
19       <groupId>${project.groupId}</groupId>
20       <artifactId>mappingservice.api</artifactId>
21       <version>${project.version}</version>
22     </dependency>
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>mappingservice.yangmodel</artifactId>
26       <version>${project.version}</version>
27     </dependency>
28
29     <!-- needed for activator -->
30     <dependency>
31       <groupId>org.apache.felix</groupId>
32       <artifactId>org.apache.felix.dependencymanager</artifactId>
33     </dependency>
34
35     <!-- needed for osgi console -->
36     <dependency>
37       <groupId>equinoxSDK381</groupId>
38       <artifactId>org.eclipse.osgi</artifactId>
39     </dependency>
40   </dependencies>
41
42   <build>
43      <plugins>
44        <plugin>
45          <groupId>org.apache.felix</groupId>
46          <artifactId>maven-bundle-plugin</artifactId>
47          <extensions>true</extensions>
48          <configuration>
49            <instructions>
50              <Export-Package>
51                org.opendaylight.lispflowmapping.implementation,
52                org.opendaylight.lispflowmapping.implementation.serializer,
53                org.opendaylight.lispflowmapping.implementation.util
54              </Export-Package>
55            </instructions>
56          </configuration>
57        </plugin>
58      </plugins>
59    </build>
60 </project>