Release Carbon
[openflowjava.git] / 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.openflowjava</groupId>
5         <artifactId>openflowjava-parent</artifactId>
6         <version>0.9.0-Carbon</version>
7         <relativePath>../parent</relativePath>
8     </parent>
9     <artifactId>simple-client</artifactId>
10     <packaging>bundle</packaging>
11     <name>Openflow Protocol Simple Client</name>
12     <scm>
13         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
14       <tag>HEAD</tag>
15   </scm>
16
17     <build>
18         <plugins>
19             <plugin>
20                 <groupId>org.apache.felix</groupId>
21                 <artifactId>maven-bundle-plugin</artifactId>
22                 <configuration>
23                     <instructions>
24                         <Export-Package>org.opendaylight.openflowjava.protocol.impl.clients.*</Export-Package>
25                     </instructions>
26                 </configuration>
27             </plugin>
28         </plugins>
29     </build>
30
31     <dependencies>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>openflow-protocol-impl</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>io.netty</groupId>
38             <artifactId>netty-handler</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>com.google.guava</groupId>
42             <artifactId>guava</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.slf4j</groupId>
46             <artifactId>slf4j-log4j12</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>net.sourceforge.argparse4j</groupId>
50             <artifactId>argparse4j</artifactId>
51         </dependency>
52     </dependencies>
53 </project>