8507ed116ce6e8739971d103a5b1c2167205f936
[openflowplugin.git] / openflowplugin / 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>openflowplugin</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             </plugin>
20         </plugins>
21     </build>
22     <dependencies>
23         <dependency>
24             <groupId>javax.annotation</groupId>
25             <artifactId>javax.annotation-api</artifactId>
26             <optional>true</optional>
27         </dependency>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>openflowplugin-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>openflowplugin-extension-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}.model</groupId>
38             <artifactId>model-flow-base</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}.model</groupId>
42             <artifactId>model-flow-service</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}.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         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-binding-api</artifactId>
55         </dependency>
56
57         <dependency>
58             <groupId>${project.groupId}.openflowjava</groupId>
59             <artifactId>openflow-protocol-api</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}.openflowjava</groupId>
63             <artifactId>openflow-protocol-spi</artifactId>
64         </dependency>
65
66         <dependency>
67             <groupId>com.google.guava</groupId>
68             <artifactId>guava</artifactId>
69         </dependency>
70
71         <dependency>
72             <groupId>org.slf4j</groupId>
73             <artifactId>slf4j-log4j12</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>sal-common-util</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>${project.groupId}.openflowjava</groupId>
82             <artifactId>openflowjava-util</artifactId>
83         </dependency>
84
85     </dependencies>
86 </project>