Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / features-aggregator / features-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"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.odlparent</groupId>
7         <artifactId>features-parent</artifactId>
8         <version>1.9.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.openflowplugin</groupId>
13     <artifactId>features-openflowplugin</artifactId>
14     <packaging>pom</packaging>
15     <version>0.5.0-SNAPSHOT</version>
16
17     <properties>
18         <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
19         <config.version>0.7.0-SNAPSHOT</config.version>
20         <mdsal.version>1.6.0-SNAPSHOT</mdsal.version>
21         <openflowjava.version>0.10.0-SNAPSHOT</openflowjava.version>
22         <openflowplugin.version>0.5.0-SNAPSHOT</openflowplugin.version>
23         <dluxapps.version>0.6.0-SNAPSHOT</dluxapps.version>
24         <lldp.version>0.13.0-SNAPSHOT</lldp.version>
25         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
26         <restconf.version>1.6.0-SNAPSHOT</restconf.version>
27         <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
28     </properties>
29
30     <dependencyManagement>
31         <dependencies>
32             <!-- This project -->
33             <dependency>
34                 <groupId>org.opendaylight.openflowplugin</groupId>
35                 <artifactId>openflowplugin-artifacts</artifactId>
36                 <version>${project.version}</version>
37                 <scope>import</scope>
38                 <type>pom</type>
39             </dependency>
40
41             <!-- YANG tools -->
42             <dependency>
43                 <groupId>org.opendaylight.yangtools</groupId>
44                 <artifactId>yangtools-artifacts</artifactId>
45                 <version>${yangtools.version}</version>
46                 <scope>import</scope>
47                 <type>pom</type>
48             </dependency>
49
50             <!-- Controller infrastructure -->
51             <dependency>
52                 <groupId>org.opendaylight.controller</groupId>
53                 <artifactId>config-artifacts</artifactId>
54                 <version>${config.version}</version>
55                 <scope>import</scope>
56                 <type>pom</type>
57             </dependency>
58             <dependency>
59                 <groupId>org.opendaylight.controller</groupId>
60                 <artifactId>mdsal-artifacts</artifactId>
61                 <version>${mdsal.version}</version>
62                 <scope>import</scope>
63                 <type>pom</type>
64             </dependency>
65
66             <!-- restconf -->
67             <dependency>
68                 <groupId>org.opendaylight.netconf</groupId>
69                 <artifactId>restconf-artifacts</artifactId>
70                 <version>${restconf.version}</version>
71                 <scope>import</scope>
72                 <type>pom</type>
73             </dependency>
74
75
76             <!-- OpenFlowJava -->
77             <dependency>
78                 <groupId>org.opendaylight.openflowjava</groupId>
79                 <artifactId>openflowjava-artifacts</artifactId>
80                 <version>${openflowjava.version}</version>
81                 <scope>import</scope>
82                 <type>pom</type>
83             </dependency>
84         </dependencies>
85     </dependencyManagement>
86
87     <dependencies>
88         <!-- feature dependencies -->
89         <dependency>
90             <groupId>org.opendaylight.mdsal.model</groupId>
91             <artifactId>features-mdsal-model</artifactId>
92             <version>${mdsal.model.version}</version>
93             <classifier>features</classifier>
94             <type>xml</type>
95             <scope>runtime</scope>
96         </dependency>
97
98         <dependency>
99             <groupId>org.opendaylight.controller</groupId>
100             <artifactId>features-mdsal</artifactId>
101             <classifier>features</classifier>
102             <type>xml</type>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.yangtools</groupId>
106             <artifactId>features-yangtools</artifactId>
107             <classifier>features</classifier>
108             <type>xml</type>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.netconf</groupId>
112             <artifactId>features-restconf</artifactId>
113             <classifier>features</classifier>
114             <type>xml</type>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.openflowjava</groupId>
118             <artifactId>features-openflowjava</artifactId>
119             <classifier>features</classifier>
120             <type>xml</type>
121         </dependency>
122
123         <!-- bundle dependencies -->
124         <dependency>
125             <groupId>org.opendaylight.openflowplugin.model</groupId>
126             <artifactId>model-flow-base</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.openflowplugin.model</groupId>
130             <artifactId>model-flow-service</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.openflowplugin.model</groupId>
134             <artifactId>model-flow-statistics</artifactId>
135         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.controller.model</groupId>
138             <artifactId>model-inventory</artifactId>
139         </dependency>
140         <dependency>
141             <groupId>org.opendaylight.controller.model</groupId>
142             <artifactId>model-topology</artifactId>
143         </dependency>
144
145         <dependency>
146             <groupId>org.opendaylight.openflowplugin.applications</groupId>
147             <artifactId>forwardingrules-manager</artifactId>
148         </dependency>
149         <dependency>
150             <groupId>org.opendaylight.openflowplugin.applications</groupId>
151             <artifactId>forwardingrules-sync</artifactId>
152         </dependency>
153         <dependency>
154             <groupId>org.opendaylight.openflowplugin.applications</groupId>
155             <artifactId>inventory-manager</artifactId>
156         </dependency>
157         <dependency>
158             <groupId>org.opendaylight.openflowplugin.applications</groupId>
159             <artifactId>lldp-speaker</artifactId>
160         </dependency>
161         <dependency>
162             <groupId>org.opendaylight.openflowplugin.applications</groupId>
163             <artifactId>statistics-manager</artifactId>
164         </dependency>
165         <dependency>
166             <groupId>org.opendaylight.openflowplugin</groupId>
167             <artifactId>openflowplugin-blueprint-config</artifactId>
168             <version>${project.version}</version>
169         </dependency>
170         <dependency>
171             <groupId>org.opendaylight.openflowplugin</groupId>
172             <artifactId>openflowplugin-blueprint-config</artifactId>
173             <version>${project.version}</version>
174             <type>cfg</type>
175             <classifier>config</classifier>
176         </dependency>
177         <dependency>
178             <groupId>org.opendaylight.openflowjava</groupId>
179             <artifactId>openflowjava-blueprint-config</artifactId>
180             <version>${openflowjava.version}</version>
181         </dependency>
182         <dependency>
183             <groupId>org.opendaylight.openflowjava</groupId>
184             <artifactId>openflowjava-blueprint-config</artifactId>
185             <version>${openflowjava.version}</version>
186             <type>xml</type>
187             <classifier>config</classifier>
188         </dependency>
189         <dependency>
190             <groupId>org.opendaylight.openflowjava</groupId>
191             <artifactId>openflowjava-blueprint-config</artifactId>
192             <version>${openflowjava.version}</version>
193             <type>xml</type>
194             <classifier>legacyConfig</classifier>
195         </dependency>
196         <dependency>
197             <groupId>org.opendaylight.dluxapps</groupId>
198             <artifactId>features-dluxapps</artifactId>
199             <version>${dluxapps.version}</version>
200             <classifier>features</classifier>
201             <type>xml</type>
202         </dependency>
203
204         <!-- bundle dependencies -->
205         <dependency>
206             <groupId>org.opendaylight.openflowplugin</groupId>
207             <artifactId>openflowplugin-api</artifactId>
208         </dependency>
209         <dependency>
210             <groupId>org.opendaylight.openflowplugin</groupId>
211             <artifactId>openflowplugin-extension-api</artifactId>
212         </dependency>
213         <dependency>
214             <groupId>org.opendaylight.openflowplugin</groupId>
215             <artifactId>openflowplugin</artifactId>
216         </dependency>
217         <dependency>
218             <groupId>org.opendaylight.openflowplugin</groupId>
219             <artifactId>openflowplugin-impl</artifactId>
220         </dependency>
221         <dependency>
222             <groupId>org.opendaylight.openflowplugin.applications</groupId>
223             <artifactId>table-miss-enforcer</artifactId>
224         </dependency>
225
226         <dependency>
227             <groupId>org.opendaylight.openflowplugin.applications</groupId>
228             <artifactId>topology-lldp-discovery</artifactId>
229         </dependency>
230
231         <dependency>
232             <groupId>org.opendaylight.openflowplugin.applications</groupId>
233             <artifactId>topology-manager</artifactId>
234         </dependency>
235
236         <dependency>
237             <groupId>org.opendaylight.openflowplugin.applications</groupId>
238             <artifactId>of-switch-config-pusher</artifactId>
239         </dependency>
240
241         <dependency>
242             <groupId>org.opendaylight.openflowplugin</groupId>
243             <artifactId>drop-test-karaf</artifactId>
244         </dependency>
245         <dependency>
246             <groupId>org.opendaylight.openflowplugin</groupId>
247             <artifactId>test-common</artifactId>
248         </dependency>
249         <dependency>
250             <groupId>org.opendaylight.openflowplugin</groupId>
251             <artifactId>openflowplugin-controller-config</artifactId>
252             <type>xml</type>
253             <classifier>config-Li</classifier>
254         </dependency>
255         <dependency>
256             <groupId>org.opendaylight.openflowplugin</groupId>
257             <artifactId>openflowplugin-controller-config</artifactId>
258             <type>xml</type>
259             <classifier>configmsgspy</classifier>
260         </dependency>
261         <dependency>
262             <groupId>org.opendaylight.controller</groupId>
263             <artifactId>liblldp</artifactId>
264             <version>${lldp.version}</version>
265         </dependency>
266         <dependency>
267             <groupId>org.opendaylight.openflowplugin</groupId>
268             <artifactId>openflowplugin-common</artifactId>
269         </dependency>
270         <dependency>
271             <groupId>org.opendaylight.openflowplugin.applications</groupId>
272             <artifactId>bulk-o-matic</artifactId>
273         </dependency>
274         <dependency>
275             <groupId>org.opendaylight.openflowplugin.applications</groupId>
276             <artifactId>notification-supplier</artifactId>
277         </dependency>
278     </dependencies>
279
280 </project>