Incrementing versions by 0.1.0 for post-Helium master branch
[ovsdb.git] / plugin-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.ovsdb</groupId>
6     <artifactId>commons</artifactId>
7     <version>1.3.0-SNAPSHOT</version>
8     <relativePath>../commons/parent</relativePath>
9   </parent>
10
11   <artifactId>plugin-shell</artifactId>
12   <version>1.1.0-SNAPSHOT</version>
13   <name>OpenDaylight OVSDB Plugin Shell</name>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>junit</groupId>
19       <artifactId>junit</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.apache.karaf.shell</groupId>
23       <artifactId>org.apache.karaf.shell.console</artifactId>
24       <version>${karaf.shell.version}</version>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.ovsdb</groupId>
28       <artifactId>plugin</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal</artifactId>
33     </dependency>
34   </dependencies>
35
36   <build>
37     <plugins>
38       <plugin>
39         <groupId>org.apache.felix</groupId>
40         <artifactId>maven-bundle-plugin</artifactId>
41         <version>2.4.0</version>
42         <extensions>true</extensions>
43         <configuration>
44           <instructions>
45             <Import-Package>org.apache.felix.service.command,
46               org.apache.karaf.shell.commands,
47               org.apache.karaf.shell.console,
48               *</Import-Package>
49           </instructions>
50         </configuration>
51       </plugin>
52     </plugins>
53   </build>
54
55 </project>