Merge "Use QueuedNotificationManager for port message processing"
[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.10.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>com.google.code.findbugs</groupId>
31             <artifactId>jsr305</artifactId>
32             <optional>true</optional>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.openflowplugin.model</groupId>
36             <artifactId>model-flow-base</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.openflowplugin.model</groupId>
40             <artifactId>model-flow-service</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller.model</groupId>
44             <artifactId>model-inventory</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.mdsal</groupId>
48             <artifactId>mdsal-binding-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>yang-binding</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.openflowplugin</groupId>
56             <artifactId>openflowplugin-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.infrautils</groupId>
60             <artifactId>infrautils-util</artifactId>
61             <version>${infrautils.version}</version>
62         </dependency>
63     </dependencies>
64 </project>