Bump versions by x.y.(z+1)
[openflowplugin.git] / samples / learning-switch / 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.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.11.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10
11     <artifactId>learning-switch</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                 <extensions>true</extensions>
20             </plugin>
21         </plugins>
22     </build>
23     <dependencies>
24         <dependency>
25             <groupId>javax.annotation</groupId>
26             <artifactId>javax.annotation-api</artifactId>
27             <optional>true</optional>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.openflowplugin.model</groupId>
31             <artifactId>model-flow-base</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.openflowplugin.model</groupId>
35             <artifactId>model-flow-service</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.controller.model</groupId>
39             <artifactId>model-inventory</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.mdsal</groupId>
43             <artifactId>mdsal-binding-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.mdsal</groupId>
47             <artifactId>yang-binding</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.openflowplugin</groupId>
51             <artifactId>openflowplugin-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.infrautils</groupId>
55             <artifactId>infrautils-util</artifactId>
56         </dependency>
57     </dependencies>
58 </project>