Do not use deprecated Futures methods
[openflowplugin.git] / openflowplugin-impl / 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.9.0-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin-impl</artifactId>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16             <groupId>org.osgi</groupId>
17             <artifactId>org.osgi.core</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>org.opendaylight.openflowplugin</groupId>
21             <artifactId>openflowplugin-api</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.openflowplugin</groupId>
25             <artifactId>openflowplugin</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.openflowplugin</groupId>
29             <artifactId>openflowplugin-extension-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.openflowplugin.model</groupId>
33             <artifactId>model-flow-base</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.openflowplugin.model</groupId>
37             <artifactId>model-flow-service</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.openflowplugin.model</groupId>
41             <artifactId>model-flow-statistics</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller.model</groupId>
45             <artifactId>model-inventory</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal</groupId>
49             <artifactId>mdsal-binding-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53             <artifactId>mdsal-binding-spi</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}.openflowjava</groupId>
57             <artifactId>openflow-protocol-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.infrautils</groupId>
61             <artifactId>diagstatus-api</artifactId>
62             <version>${infrautils.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.apache.aries.blueprint</groupId>
66             <artifactId>blueprint-maven-plugin-annotation</artifactId>
67             <optional>true</optional>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}.openflowjava</groupId>
71             <artifactId>openflow-protocol-spi</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.apache.karaf.shell</groupId>
75             <artifactId>org.apache.karaf.shell.console</artifactId>
76             <scope>provided</scope>
77         </dependency>
78         <dependency>
79             <groupId>com.google.guava</groupId>
80             <artifactId>guava</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.apache.commons</groupId>
84             <artifactId>commons-lang3</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>javax.annotation</groupId>
88             <artifactId>javax.annotation-api</artifactId>
89             <optional>true</optional>
90         </dependency>
91         <dependency>
92             <groupId>javax.inject</groupId>
93             <artifactId>javax.inject</artifactId>
94             <optional>true</optional>
95         </dependency>
96         <dependency>
97             <groupId>junit</groupId>
98             <artifactId>junit</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.mockito</groupId>
103             <artifactId>mockito-core</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.slf4j</groupId>
108             <artifactId>slf4j-log4j12</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>${project.groupId}.openflowjava</groupId>
113             <artifactId>openflowjava-util</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>${project.groupId}.openflowjava</groupId>
117             <artifactId>openflow-protocol-impl</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.osgi</groupId>
121             <artifactId>org.osgi.compendium</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.openflowplugin</groupId>
125             <artifactId>openflowplugin-common</artifactId>
126         </dependency>
127     </dependencies>
128
129     <build>
130         <plugins>
131             <plugin>
132                 <groupId>org.apache.aries.blueprint</groupId>
133                 <artifactId>blueprint-maven-plugin</artifactId>
134                 <configuration>
135                     <scanPaths>
136                         <scanPath>org.opendaylight.openflowplugin.impl</scanPath>
137                     </scanPaths>
138                 </configuration>
139             </plugin>
140             <plugin>
141                 <groupId>org.apache.felix</groupId>
142                 <artifactId>maven-bundle-plugin</artifactId>
143                 <extensions>true</extensions>
144             </plugin>
145         </plugins>
146     </build>
147 </project>