Switch to MD-SAL APIs
[openflowplugin.git] / applications / table-miss-enforcer / 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>applications</artifactId>
7     <version>0.9.0-SNAPSHOT</version>
8   </parent>
9   <groupId>org.opendaylight.openflowplugin.applications</groupId>
10   <artifactId>table-miss-enforcer</artifactId>
11   <packaging>bundle</packaging>
12   <dependencies>
13       <dependency>
14           <groupId>org.opendaylight.openflowplugin</groupId>
15           <artifactId>openflowplugin-api</artifactId>
16       </dependency>
17       <dependency>
18           <groupId>org.opendaylight.openflowplugin</groupId>
19           <artifactId>openflowplugin-common</artifactId>
20       </dependency>
21
22       <dependency>
23           <groupId>org.opendaylight.mdsal</groupId>
24           <artifactId>mdsal-binding-api</artifactId>
25       </dependency>
26       <dependency>
27           <groupId>org.opendaylight.controller.model</groupId>
28           <artifactId>model-inventory</artifactId>
29       </dependency>
30       <dependency>
31           <groupId>org.opendaylight.openflowplugin.model</groupId>
32           <artifactId>model-flow-service</artifactId>
33       </dependency>
34       <dependency>
35           <groupId>org.opendaylight.infrautils</groupId>
36           <artifactId>infrautils-util</artifactId>
37           <version>${infrautils.version}</version>
38       </dependency>
39       <dependency>
40           <groupId>org.opendaylight.openflowplugin.applications</groupId>
41           <artifactId>device-ownership-service</artifactId>
42           <version>${project.version}</version>
43       </dependency>
44       <dependency>
45           <groupId>org.mockito</groupId>
46           <artifactId>mockito-core</artifactId>
47           <scope>test</scope>
48       </dependency>
49       <dependency>
50           <groupId>junit</groupId>
51           <artifactId>junit</artifactId>
52           <scope>test</scope>
53       </dependency>
54   </dependencies>
55
56 </project>