Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / samples / simple-client / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.openflowplugin</groupId>
5         <artifactId>openflowplugin-parent</artifactId>
6         <version>0.8.0-SNAPSHOT</version>
7         <relativePath>../../parent</relativePath>
8     </parent>
9
10     <artifactId>simple-client</artifactId>
11     <packaging>bundle</packaging>
12
13     <build>
14         <plugins>
15             <plugin>
16                 <groupId>org.apache.felix</groupId>
17                 <artifactId>maven-bundle-plugin</artifactId>
18                 <configuration>
19                     <instructions>
20                         <Export-Package>org.opendaylight.openflowjava.protocol.impl.clients.*</Export-Package>
21                     </instructions>
22                 </configuration>
23             </plugin>
24         </plugins>
25     </build>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}.openflowjava</groupId>
30             <artifactId>openflow-protocol-impl</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>io.netty</groupId>
34             <artifactId>netty-handler</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>com.google.guava</groupId>
38             <artifactId>guava</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.slf4j</groupId>
42             <artifactId>slf4j-log4j12</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>net.sourceforge.argparse4j</groupId>
46             <artifactId>argparse4j</artifactId>
47         </dependency>
48     </dependencies>
49 </project>