Do not use RpcService in learning-switch
[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.18.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10
11     <artifactId>learning-switch</artifactId>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16             <groupId>com.guicedee.services</groupId>
17             <artifactId>javax.inject</artifactId>
18             <optional>true</optional>
19         </dependency>
20         <dependency>
21             <groupId>jakarta.annotation</groupId>
22             <artifactId>jakarta.annotation-api</artifactId>
23             <optional>true</optional>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.infrautils</groupId>
27             <artifactId>infrautils-util</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.mdsal</groupId>
31             <artifactId>mdsal-binding-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.mdsal</groupId>
35             <artifactId>yang-binding</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.openflowplugin</groupId>
39             <artifactId>openflowplugin-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.openflowplugin.model</groupId>
43             <artifactId>model-flow-base</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.openflowplugin.model</groupId>
47             <artifactId>model-flow-service</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.openflowplugin.model</groupId>
51             <artifactId>model-inventory</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.osgi</groupId>
55             <artifactId>org.osgi.service.component.annotations</artifactId>
56         </dependency>
57     </dependencies>
58 </project>