Merge "Printing failed flow/group details for the bundle based resync"
[openflowplugin.git] / extension / openflowplugin-extension-eric / 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
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6     <groupId>org.opendaylight.openflowplugin</groupId>
7         <artifactId>openflowplugin-extension-parent</artifactId>
8         <version>0.9.0-SNAPSHOT</version>
9        <relativePath>../</relativePath>
10     </parent>
11
12     <artifactId>openflowplugin-extension-eric</artifactId>
13     <packaging>bundle</packaging>
14
15     <build>
16         <plugins>
17             <plugin>
18                 <groupId>org.apache.felix</groupId>
19                 <artifactId>maven-bundle-plugin</artifactId>
20             </plugin>
21         </plugins>
22     </build>
23
24     <dependencies>
25     <dependency>
26           <groupId>${project.groupId}</groupId>
27             <artifactId>openflowplugin-extension-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>openflowjava-extension-eric</artifactId>
32         </dependency>
33         <!-- MD-SAL models -->
34         <dependency>
35             <groupId>${project.groupId}.model</groupId>
36             <artifactId>model-flow-base</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}.model</groupId>
40             <artifactId>model-flow-service</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}.model</groupId>
44             <artifactId>model-flow-statistics</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller.model</groupId>
48             <artifactId>model-inventory</artifactId>
49         </dependency>
50         <!-- OpenFlowJava-API models -->
51         <dependency>
52             <groupId>${project.groupId}.openflowjava</groupId>
53             <artifactId>openflow-protocol-api</artifactId>
54         </dependency>
55         <!-- Test dependencies -->
56         <dependency>
57             <groupId>junit</groupId>
58             <artifactId>junit</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.mockito</groupId>
63             <artifactId>mockito-core</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.slf4j</groupId>
68             <artifactId>slf4j-log4j12</artifactId>
69             <scope>test</scope>
70         </dependency>
71     </dependencies>
72
73 </project>