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