Bump versions by 0.1.0 for next dev cycle
[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
5   <parent>
6     <groupId>org.opendaylight.lispflowmapping</groupId>
7     <artifactId>mappingservice-parent</artifactId>
8     <version>1.4.0-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>mappingservice.shell</artifactId>
12   <packaging>bundle</packaging>
13   <name>Mapping Service Karaf Shell Commands</name>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.apache.karaf.shell</groupId>
18       <artifactId>org.apache.karaf.shell.console</artifactId>
19       <version>${karaf.version}</version>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.lispflowmapping</groupId>
23       <artifactId>mappingservice.api</artifactId>
24     </dependency>
25   </dependencies>
26
27   <build>
28     <plugins>
29       <plugin>
30         <groupId>org.apache.felix</groupId>
31         <artifactId>maven-bundle-plugin</artifactId>
32         <extensions>true</extensions>
33         <configuration>
34           <instructions>
35             <Import-Package>org.apache.karaf.shell.commands,
36               org.apache.karaf.shell.console,
37               org.opendaylight.lispflowmapping.interfaces.mappingservice</Import-Package>
38           </instructions>
39         </configuration>
40       </plugin>
41     </plugins>
42   </build>
43 </project>