Migrate to odlparent 1.8.0-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.10.0-SNAPSHOT</version>
7         <relativePath>../parent</relativePath>
8     </parent>
9     <artifactId>simple-client</artifactId>
10     <packaging>bundle</packaging>
11     <!-- <name> formatting is used by autorelease to parse and notify projects on
12          build failure. Please do not modify this unless you have a good reason. -->
13     <name>ODL :: openflowjava :: ${project.artifactId}</name>
14     <scm>
15         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
16       <tag>HEAD</tag>
17   </scm>
18
19     <build>
20         <plugins>
21             <plugin>
22                 <groupId>org.apache.felix</groupId>
23                 <artifactId>maven-bundle-plugin</artifactId>
24                 <configuration>
25                     <instructions>
26                         <Export-Package>org.opendaylight.openflowjava.protocol.impl.clients.*</Export-Package>
27                     </instructions>
28                 </configuration>
29             </plugin>
30         </plugins>
31     </build>
32
33     <dependencies>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>openflow-protocol-impl</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>io.netty</groupId>
40             <artifactId>netty-handler</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>com.google.guava</groupId>
44             <artifactId>guava</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.slf4j</groupId>
48             <artifactId>slf4j-log4j12</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>net.sourceforge.argparse4j</groupId>
52             <artifactId>argparse4j</artifactId>
53         </dependency>
54     </dependencies>
55 </project>