Add explicit org.osgi.core dependency
[openflowplugin.git] / openflowplugin-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-parent</artifactId>
8         <version>0.7.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <artifactId>openflowplugin-api</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.osgi</groupId>
18             <artifactId>org.osgi.core</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>${project.groupId}.model</groupId>
22             <artifactId>model-flow-service</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>${project.groupId}.model</groupId>
26             <artifactId>model-flow-statistics</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller</groupId>
30             <artifactId>sal-binding-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}.openflowjava</groupId>
34             <artifactId>openflow-protocol-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}.openflowjava</groupId>
38             <artifactId>openflow-protocol-spi</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.controller</groupId>
42             <artifactId>sal-common-api</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.mdsal</groupId>
46             <artifactId>mdsal-singleton-common-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.infrautils</groupId>
50             <artifactId>diagstatus-api</artifactId>
51             <version>${infrautils.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.mdsal</groupId>
55             <artifactId>mdsal-eos-binding-api</artifactId>
56         </dependency>
57     </dependencies>
58
59 </project>