Beryllium version bump
[lispflowmapping.git] / mappingservice / shell / 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   <parent>
5     <groupId>org.opendaylight.lispflowmapping</groupId>
6     <artifactId>mappingservice-parent</artifactId>
7     <version>1.3.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>mappingservice.shell</artifactId>
10   <packaging>bundle</packaging>
11   <name>LISP Flow Mapping Karaf Shell Commands</name>
12   <dependencies>
13     <dependency>
14       <groupId>org.apache.karaf.shell</groupId>
15       <artifactId>org.apache.karaf.shell.commands</artifactId>
16       <version>${karaf.version}</version>
17     </dependency>
18     <dependency>
19       <groupId>org.opendaylight.lispflowmapping</groupId>
20       <artifactId>mappingservice.api</artifactId>
21     </dependency>
22   </dependencies>
23   <build>
24     <plugins>
25       <plugin>
26         <groupId>org.apache.felix</groupId>
27         <artifactId>maven-bundle-plugin</artifactId>
28         <extensions>true</extensions>
29         <configuration>
30           <instructions>
31             <Import-Package>org.apache.karaf.shell.commands,
32               org.apache.karaf.shell.console,
33               org.opendaylight.lispflowmapping.interfaces.lisp</Import-Package>
34           </instructions>
35         </configuration>
36       </plugin>
37     </plugins>
38   </build>
39 </project>