627656646b59a0913d2b9ed8cae282267151153e
[mdsal.git] / common / artifacts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12
13     <parent>
14       <groupId>org.opendaylight.odlparent</groupId>
15       <artifactId>odlparent-lite</artifactId>
16       <version>3.1.3</version>
17       <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.mdsal</groupId>
21     <artifactId>mdsal-artifacts</artifactId>
22     <version>2.5.0-SNAPSHOT</version>
23     <packaging>pom</packaging>
24
25     <dependencyManagement>
26         <dependencies>
27
28             <dependency>
29                 <groupId>org.opendaylight.mdsal</groupId>
30                 <artifactId>features-mdsal</artifactId>
31                 <classifier>features</classifier>
32                 <version>${project.version}</version>
33                 <type>xml</type>
34             </dependency>
35
36             <!-- Common APIs for Binding and DOM -->
37             <dependency>
38                 <groupId>org.opendaylight.mdsal</groupId>
39                 <artifactId>mdsal-common-api</artifactId>
40                 <version>${project.version}</version>
41             </dependency>
42
43             <dependency>
44                 <groupId>org.opendaylight.mdsal</groupId>
45                 <artifactId>mdsal-dom-api</artifactId>
46                 <version>${project.version}</version>
47             </dependency>
48             <dependency>
49                 <groupId>org.opendaylight.mdsal</groupId>
50                 <artifactId>mdsal-dom-spi</artifactId>
51                 <version>${project.version}</version>
52             </dependency>
53             <dependency>
54                 <groupId>org.opendaylight.mdsal</groupId>
55                 <artifactId>mdsal-dom-broker</artifactId>
56                 <version>${project.version}</version>
57             </dependency>
58             <dependency>
59                 <groupId>org.opendaylight.mdsal</groupId>
60                 <artifactId>mdsal-dom-schema-service-osgi</artifactId>
61                 <version>${project.version}</version>
62             </dependency>
63             <dependency>
64                 <groupId>org.opendaylight.mdsal</groupId>
65                 <artifactId>mdsal-dom-inmemory-datastore</artifactId>
66                 <version>${project.version}</version>
67             </dependency>
68
69             <!-- Binding MD-SAL & Java Binding -->
70             <dependency>
71                 <groupId>org.opendaylight.mdsal</groupId>
72                 <artifactId>maven-sal-api-gen-plugin</artifactId>
73                 <version>0.13.0-SNAPSHOT</version>
74             </dependency>
75             <dependency>
76                 <groupId>org.opendaylight.mdsal</groupId>
77                 <artifactId>mdsal-binding-generator-api</artifactId>
78                 <version>0.13.0-SNAPSHOT</version>
79             </dependency>
80             <dependency>
81                 <groupId>org.opendaylight.mdsal</groupId>
82                 <artifactId>mdsal-binding-generator-util</artifactId>
83                 <version>0.13.0-SNAPSHOT</version>
84             </dependency>
85             <dependency>
86                 <groupId>org.opendaylight.mdsal</groupId>
87                 <artifactId>mdsal-binding-generator-impl</artifactId>
88                 <version>0.13.0-SNAPSHOT</version>
89             </dependency>
90             <dependency>
91                 <groupId>org.opendaylight.mdsal</groupId>
92                 <artifactId>mdsal-binding-java-api-generator</artifactId>
93                 <version>0.13.0-SNAPSHOT</version>
94             </dependency>
95             <dependency>
96                 <groupId>org.opendaylight.mdsal</groupId>
97                 <artifactId>yang-binding</artifactId>
98                 <version>0.13.0-SNAPSHOT</version>
99             </dependency>
100             <dependency>
101                 <groupId>org.opendaylight.mdsal</groupId>
102                 <artifactId>mdsal-binding-spec-util</artifactId>
103                 <version>0.13.0-SNAPSHOT</version>
104             </dependency>
105             <dependency>
106                 <groupId>org.opendaylight.mdsal</groupId>
107                 <artifactId>mdsal-binding-dom-codec</artifactId>
108                 <version>0.13.0-SNAPSHOT</version>
109             </dependency>
110             <dependency>
111                 <groupId>org.opendaylight.mdsal</groupId>
112                 <artifactId>mdsal-binding-dom-codec-osgi</artifactId>
113                 <version>0.13.0-SNAPSHOT</version>
114             </dependency>
115
116             <dependency>
117                 <groupId>org.opendaylight.mdsal</groupId>
118                 <artifactId>mdsal-binding-api</artifactId>
119                 <version>${project.version}</version>
120             </dependency>
121             <dependency>
122                 <groupId>org.opendaylight.mdsal</groupId>
123                 <artifactId>mdsal-binding-dom-adapter</artifactId>
124                 <version>${project.version}</version>
125             </dependency>
126             <dependency>
127                 <groupId>org.opendaylight.mdsal</groupId>
128                 <artifactId>mdsal-binding-dom-adapter</artifactId>
129                 <version>${project.version}</version>
130                 <type>test-jar</type>
131                 <scope>test</scope>
132             </dependency>
133             <dependency>
134                 <groupId>org.opendaylight.mdsal</groupId>
135                 <artifactId>mdsal-binding-util</artifactId>
136                 <version>${project.version}</version>
137             </dependency>
138             <dependency>
139                 <groupId>org.opendaylight.mdsal</groupId>
140                 <artifactId>mdsal-binding-test-utils</artifactId>
141                 <version>${project.version}</version>
142                 <scope>test</scope>
143             </dependency>
144
145             <dependency>
146                 <groupId>org.opendaylight.mdsal.model</groupId>
147                 <artifactId>yang-ext</artifactId>
148                 <version>2013.09.07.13.0-SNAPSHOT</version>
149             </dependency>
150             <dependency>
151                 <groupId>org.opendaylight.mdsal.model</groupId>
152                 <artifactId>general-entity</artifactId>
153                 <version>0.13.0-SNAPSHOT</version>
154             </dependency>
155             <dependency>
156                 <groupId>org.opendaylight.mdsal</groupId>
157                 <artifactId>mdsal-binding-test-model</artifactId>
158                 <version>0.13.0-SNAPSHOT</version>
159                 <scope>test</scope>
160             </dependency>
161
162             <!-- Binding specification version 2-->
163             <dependency>
164                 <groupId>org.opendaylight.mdsal</groupId>
165                 <artifactId>mdsal-binding2-maven-api-gen-plugin</artifactId>
166                 <version>0.13.0-SNAPSHOT</version>
167             </dependency>
168             <dependency>
169                 <groupId>org.opendaylight.mdsal</groupId>
170                 <artifactId>mdsal-binding2-runtime</artifactId>
171                 <version>0.13.0-SNAPSHOT</version>
172             </dependency>
173             <dependency>
174                 <groupId>org.opendaylight.mdsal</groupId>
175                 <artifactId>mdsal-binding2-dom-codec</artifactId>
176                 <version>0.13.0-SNAPSHOT</version>
177             </dependency>
178             <dependency>
179                 <groupId>org.opendaylight.mdsal</groupId>
180                 <artifactId>mdsal-binding2-api</artifactId>
181                 <version>0.13.0-SNAPSHOT</version>
182             </dependency>
183             <dependency>
184                 <groupId>org.opendaylight.mdsal</groupId>
185                 <artifactId>mdsal-binding2-dom-adapter</artifactId>
186                 <version>0.13.0-SNAPSHOT</version>
187             </dependency>
188             <dependency>
189                 <groupId>org.opendaylight.mdsal</groupId>
190                 <artifactId>mdsal-binding2-test-model</artifactId>
191                 <version>0.13.0-SNAPSHOT</version>
192                 <scope>test</scope>
193             </dependency>
194             <dependency>
195                 <groupId>org.opendaylight.mdsal</groupId>
196                 <artifactId>mdsal-binding2-generator-api</artifactId>
197                 <version>0.13.0-SNAPSHOT</version>
198             </dependency>
199             <dependency>
200                 <groupId>org.opendaylight.mdsal</groupId>
201                 <artifactId>mdsal-binding2-spec</artifactId>
202                 <version>0.13.0-SNAPSHOT</version>
203             </dependency>
204             <dependency>
205                 <groupId>org.opendaylight.mdsal</groupId>
206                 <artifactId>mdsal-binding2-generator-impl</artifactId>
207                 <version>0.13.0-SNAPSHOT</version>
208             </dependency>
209             <dependency>
210                 <groupId>org.opendaylight.mdsal</groupId>
211                 <artifactId>mdsal-binding2-java-api-generator</artifactId>
212                 <version>0.13.0-SNAPSHOT</version>
213             </dependency>
214             <dependency>
215                 <groupId>org.opendaylight.mdsal</groupId>
216                 <artifactId>mdsal-binding2-generator-util</artifactId>
217                 <version>0.13.0-SNAPSHOT</version>
218             </dependency>
219             <dependency>
220                 <groupId>org.opendaylight.mdsal</groupId>
221                 <artifactId>mdsal-binding2-util</artifactId>
222                 <version>0.13.0-SNAPSHOT</version>
223             </dependency>
224             <dependency>
225                 <groupId>org.opendaylight.mdsal.model.binding2</groupId>
226                 <artifactId>yang-ext</artifactId>
227                 <version>2013.09.07.13.0-SNAPSHOT</version>
228             </dependency>
229
230             <dependency>
231                 <groupId>org.opendaylight.mdsal</groupId>
232                 <artifactId>mdsal-eos-common-api</artifactId>
233                 <version>${project.version}</version>
234             </dependency>
235             <dependency>
236                 <groupId>org.opendaylight.mdsal</groupId>
237                 <artifactId>mdsal-eos-common-spi</artifactId>
238                 <version>${project.version}</version>
239             </dependency>
240             <dependency>
241                 <groupId>org.opendaylight.mdsal</groupId>
242                 <artifactId>mdsal-eos-dom-api</artifactId>
243                 <version>${project.version}</version>
244             </dependency>
245             <dependency>
246                 <groupId>org.opendaylight.mdsal</groupId>
247                 <artifactId>mdsal-eos-dom-simple</artifactId>
248                 <version>${project.version}</version>
249             </dependency>
250             <dependency>
251                 <groupId>org.opendaylight.mdsal</groupId>
252                 <artifactId>mdsal-eos-binding-api</artifactId>
253                 <version>${project.version}</version>
254             </dependency>
255             <dependency>
256                 <groupId>org.opendaylight.mdsal</groupId>
257                 <artifactId>mdsal-eos-binding-adapter</artifactId>
258                 <version>${project.version}</version>
259             </dependency>
260             <dependency>
261                 <groupId>org.opendaylight.mdsal</groupId>
262                 <artifactId>mdsal-singleton-common-api</artifactId>
263                 <version>${project.version}</version>
264             </dependency>
265             <dependency>
266                 <groupId>org.opendaylight.mdsal</groupId>
267                 <artifactId>mdsal-singleton-dom-impl</artifactId>
268                 <version>${project.version}</version>
269             </dependency>
270
271             <!-- Features -->
272             <!-- BINDING -->
273             <dependency>
274                 <groupId>${project.groupId}</groupId>
275                 <artifactId>odl-mdsal-binding</artifactId>
276                 <version>${project.version}</version>
277                 <classifier>features</classifier>
278                 <type>xml</type>
279             </dependency>
280             <dependency>
281                 <groupId>${project.groupId}</groupId>
282                 <artifactId>odl-mdsal-binding-base</artifactId>
283                 <version>${project.version}</version>
284                 <classifier>features</classifier>
285                 <type>xml</type>
286             </dependency>
287             <dependency>
288                 <groupId>${project.groupId}</groupId>
289                 <artifactId>odl-mdsal-binding-runtime</artifactId>
290                 <version>${project.version}</version>
291                 <classifier>features</classifier>
292                 <type>xml</type>
293             </dependency>
294             <dependency>
295                 <groupId>${project.groupId}</groupId>
296                 <artifactId>odl-mdsal-binding-api</artifactId>
297                 <version>${project.version}</version>
298                 <classifier>features</classifier>
299                 <type>xml</type>
300             </dependency>
301             <dependency>
302                 <groupId>${project.groupId}</groupId>
303                 <artifactId>odl-mdsal-binding-dom-adapter</artifactId>
304                 <version>${project.version}</version>
305                 <classifier>features</classifier>
306                 <type>xml</type>
307             </dependency>
308
309             <!-- BINDING2 -->
310             <dependency>
311                 <groupId>${project.groupId}</groupId>
312                 <artifactId>odl-mdsal-binding2</artifactId>
313                 <version>${project.version}</version>
314                 <classifier>features</classifier>
315                 <type>xml</type>
316             </dependency>
317             <dependency>
318                 <groupId>${project.groupId}</groupId>
319                 <artifactId>odl-mdsal-binding2-base</artifactId>
320                 <version>${project.version}</version>
321                 <classifier>features</classifier>
322                 <type>xml</type>
323             </dependency>
324             <dependency>
325                 <groupId>${project.groupId}</groupId>
326                 <artifactId>odl-mdsal-binding2-runtime</artifactId>
327                 <version>${project.version}</version>
328                 <classifier>features</classifier>
329                 <type>xml</type>
330             </dependency>
331             <dependency>
332                 <groupId>${project.groupId}</groupId>
333                 <artifactId>odl-mdsal-binding2-api</artifactId>
334                 <version>${project.version}</version>
335                 <classifier>features</classifier>
336                 <type>xml</type>
337             </dependency>
338             <dependency>
339                 <groupId>${project.groupId}</groupId>
340                 <artifactId>odl-mdsal-binding2-dom-adapter</artifactId>
341                 <version>${project.version}</version>
342                 <classifier>features</classifier>
343                 <type>xml</type>
344             </dependency>
345
346             <!-- DOM -->
347             <dependency>
348                 <groupId>${project.groupId}</groupId>
349                 <artifactId>odl-mdsal-dom</artifactId>
350                 <version>${project.version}</version>
351                 <classifier>features</classifier>
352                 <type>xml</type>
353             </dependency>
354             <dependency>
355                 <groupId>${project.groupId}</groupId>
356                 <artifactId>odl-mdsal-dom-api</artifactId>
357                 <version>${project.version}</version>
358                 <classifier>features</classifier>
359                 <type>xml</type>
360             </dependency>
361             <dependency>
362                 <groupId>${project.groupId}</groupId>
363                 <artifactId>odl-mdsal-dom-broker</artifactId>
364                 <version>${project.version}</version>
365                 <classifier>features</classifier>
366                 <type>xml</type>
367             </dependency>
368
369             <!-- COMMON -->
370             <dependency>
371                 <groupId>${project.groupId}</groupId>
372                 <artifactId>odl-mdsal-common</artifactId>
373                 <version>${project.version}</version>
374                 <classifier>features</classifier>
375                 <type>xml</type>
376             </dependency>
377
378             <!-- EOS -->
379             <dependency>
380                 <groupId>${project.groupId}</groupId>
381                 <artifactId>odl-mdsal-eos-common</artifactId>
382                 <version>${project.version}</version>
383                 <classifier>features</classifier>
384                 <type>xml</type>
385             </dependency>
386             <dependency>
387                 <groupId>${project.groupId}</groupId>
388                 <artifactId>odl-mdsal-eos-dom</artifactId>
389                 <version>${project.version}</version>
390                 <classifier>features</classifier>
391                 <type>xml</type>
392             </dependency>
393             <dependency>
394                 <groupId>${project.groupId}</groupId>
395                 <artifactId>odl-mdsal-eos-binding</artifactId>
396                 <version>${project.version}</version>
397                 <classifier>features</classifier>
398                 <type>xml</type>
399             </dependency>
400
401             <!-- SINGLETON -->
402             <dependency>
403                 <groupId>${project.groupId}</groupId>
404                 <artifactId>odl-mdsal-singleton-common</artifactId>
405                 <version>${project.version}</version>
406                 <classifier>features</classifier>
407                 <type>xml</type>
408             </dependency>
409             <dependency>
410                 <groupId>${project.groupId}</groupId>
411                 <artifactId>odl-mdsal-singleton-dom</artifactId>
412                 <version>${project.version}</version>
413                 <classifier>features</classifier>
414                 <type>xml</type>
415             </dependency>
416         </dependencies>
417     </dependencyManagement>
418 </project>