Merge "Add NodeConfiguratorImpl enqueue trace"
[openflowplugin.git] / extension / openflowplugin-extension-api / 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-api</artifactId>
13     <packaging>bundle</packaging>
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19             </plugin>
20         </plugins>
21     </build>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.opendaylight.yangtools</groupId>
26             <artifactId>yang-model-api</artifactId>
27         </dependency>
28
29         <!-- OpenFlowJava-API models -->
30         <dependency>
31             <groupId>${project.groupId}.openflowjava</groupId>
32             <artifactId>openflow-protocol-api</artifactId>
33         </dependency>
34
35         <!-- MD-SAL models -->
36         <dependency>
37             <groupId>org.opendaylight.openflowplugin.model</groupId>
38             <artifactId>model-flow-base</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.openflowplugin.model</groupId>
42             <artifactId>model-flow-service</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.openflowplugin.model</groupId>
46             <artifactId>model-flow-statistics</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.controller.model</groupId>
50             <artifactId>model-inventory</artifactId>
51         </dependency>
52
53         <!-- junit -->
54         <dependency>
55             <groupId>junit</groupId>
56             <artifactId>junit</artifactId>
57             <scope>test</scope>
58         </dependency>
59
60     </dependencies>
61
62 </project>