Remove version mismatch in config.version
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / integrationtest / test-it / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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         <artifactId>sal-remoterpc-connector-test-parent</artifactId>
6         <groupId>org.opendaylight.controller.tests</groupId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>sal-remoterpc-connector-test-it</artifactId>
10     <scm>
11         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14     </scm>
15
16     <properties>
17         <jackson.version>2.3.0</jackson.version>
18         <exam.version>3.0.0</exam.version>
19         <url.version>1.5.0</url.version>
20     </properties>
21
22     <dependencyManagement>
23         <dependencies>
24             <dependency>
25                 <groupId>commons-codec</groupId>
26                 <artifactId>commons-codec</artifactId>
27                 <version>1.7</version>
28             </dependency>
29         </dependencies>
30     </dependencyManagement>
31
32
33     <build>
34         <plugins>
35             <plugin>
36                 <groupId>org.ops4j.pax.exam</groupId>
37                 <artifactId>maven-paxexam-plugin</artifactId>
38                 <version>1.2.4</version>
39                 <executions>
40                     <execution>
41                         <id>generate-config</id>
42                         <goals>
43                             <goal>generate-depends-file</goal>
44                         </goals>
45                     </execution>
46                 </executions>
47             </plugin>
48         </plugins>
49         <pluginManagement>
50             <plugins>
51                 <!--This plugin's configuration is used to store Eclipse
52                     m2e settings only. It has no influence on the Maven build itself. -->
53                 <plugin>
54                     <groupId>org.eclipse.m2e</groupId>
55                     <artifactId>lifecycle-mapping</artifactId>
56                     <version>1.0.0</version>
57                     <configuration>
58                         <lifecycleMappingMetadata>
59                             <pluginExecutions>
60                                 <pluginExecution>
61                                     <pluginExecutionFilter>
62                                         <groupId>
63                                             org.ops4j.pax.exam
64                                         </groupId>
65                                         <artifactId>
66                                             maven-paxexam-plugin
67                                         </artifactId>
68                                         <versionRange>
69                                             [1.2.4,)
70                                         </versionRange>
71                                         <goals>
72                                             <goal>
73                                                 generate-depends-file
74                                             </goal>
75                                         </goals>
76                                     </pluginExecutionFilter>
77                                     <action>
78                                         <ignore></ignore>
79                                     </action>
80                                 </pluginExecution>
81                             </pluginExecutions>
82                         </lifecycleMappingMetadata>
83                     </configuration>
84                 </plugin>
85             </plugins>
86         </pluginManagement>
87     </build>
88
89     <dependencies>
90         <dependency>
91             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
92             <artifactId>xtend-lib-osgi</artifactId>
93             <version>2.4.3</version>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.controller.tests</groupId>
97             <artifactId>sal-remoterpc-connector-test-provider</artifactId>
98             <version>1.0-SNAPSHOT</version>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.controller.tests</groupId>
102             <artifactId>sal-remoterpc-connector-test-consumer</artifactId>
103             <version>1.0-SNAPSHOT</version>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.controller</groupId>
107             <artifactId>sal-broker-impl</artifactId>
108             <version>1.0-SNAPSHOT</version>
109         </dependency>
110         <dependency>
111             <groupId>org.ops4j.pax.exam</groupId>
112             <artifactId>pax-exam-container-native</artifactId>
113             <version>${exam.version}</version>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.ops4j.pax.exam</groupId>
118             <artifactId>pax-exam-junit4</artifactId>
119             <version>${exam.version}</version>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.ops4j.pax.exam</groupId>
124             <artifactId>pax-exam-link-mvn</artifactId>
125             <version>${exam.version}</version>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>org.ops4j.pax.url</groupId>
130             <artifactId>pax-url-aether</artifactId>
131             <version>1.5.2</version>
132             <scope>test</scope>
133         </dependency>
134         <dependency>
135             <groupId>equinoxSDK381</groupId>
136             <artifactId>org.eclipse.osgi</artifactId>
137             <version>3.8.1.v20120830-144521</version>
138             <scope>test</scope>
139         </dependency>
140         <dependency>
141             <groupId>org.slf4j</groupId>
142             <artifactId>log4j-over-slf4j</artifactId>
143             <version>1.7.2</version>
144         </dependency>
145         <dependency>
146             <groupId>ch.qos.logback</groupId>
147             <artifactId>logback-core</artifactId>
148             <version>1.0.9</version>
149         </dependency>
150         <dependency>
151             <groupId>ch.qos.logback</groupId>
152             <artifactId>logback-classic</artifactId>
153             <version>1.0.9</version>
154         </dependency>
155         <dependency>
156             <groupId>org.opendaylight.controller</groupId>
157             <artifactId>sal-binding-api</artifactId>
158             <version>1.0-SNAPSHOT</version>
159         </dependency>
160         <dependency>
161             <groupId>org.opendaylight.controller</groupId>
162             <artifactId>sal-common-util</artifactId>
163             <version>1.0-SNAPSHOT</version>
164         </dependency>
165         <dependency>
166             <groupId>org.opendaylight.controller</groupId>
167             <artifactId>sal-core-api</artifactId>
168             <version>1.0-SNAPSHOT</version>
169         </dependency>
170         <dependency>
171             <groupId>org.opendaylight.controller</groupId>
172             <artifactId>sal-remoterpc-connector</artifactId>
173             <version>1.0-SNAPSHOT</version>
174         </dependency>
175
176         <dependency>
177             <groupId>org.opendaylight.controller</groupId>
178             <artifactId>containermanager</artifactId>
179             <version>0.5.1-SNAPSHOT</version>
180             <exclusions>
181                 <exclusion>
182                     <groupId>org.osgi</groupId>
183                     <artifactId>org.osgi.compendium</artifactId>
184                 </exclusion>
185                 <exclusion>
186                     <artifactId>commons-io</artifactId>
187                     <groupId>commons-io</groupId>
188                 </exclusion>
189             </exclusions>
190         </dependency>
191
192         <dependency>
193             <groupId>org.opendaylight.yangtools</groupId>
194             <artifactId>yang-binding</artifactId>
195         </dependency>
196         <dependency>
197             <groupId>org.opendaylight.yangtools</groupId>
198             <artifactId>yang-common</artifactId>
199         </dependency>
200         <dependency>
201             <groupId>org.opendaylight.yangtools</groupId>
202             <artifactId>yang-data-api</artifactId>
203         </dependency>
204         <!--dependency> <groupId>org.opendaylight.yangtools</groupId> <artifactId>yang-data-impl</artifactId>
205             <version>${yangtools.version}</version> </dependency -->
206         <dependency>
207             <groupId>org.opendaylight.yangtools</groupId>
208             <artifactId>yang-parser-impl</artifactId>
209             <version>${yangtools.version}</version>
210         </dependency>
211         <dependency>
212             <groupId>org.opendaylight.controller</groupId>
213             <artifactId>sal-common-util</artifactId>
214             <version>1.0-SNAPSHOT</version>
215         </dependency>
216         <dependency>
217             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
218             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
219             <version>4.0</version>
220         </dependency>
221
222         <!-- routing table dependencies -->
223         <dependency>
224             <groupId>org.opendaylight.controller</groupId>
225             <artifactId>zeromq-routingtable.implementation</artifactId>
226             <version>0.4.1-SNAPSHOT</version>
227         </dependency>
228         <dependency>
229             <groupId>org.opendaylight.controller</groupId>
230             <artifactId>clustering.services</artifactId>
231             <version>0.4.1-SNAPSHOT</version>
232         </dependency>
233         <dependency>
234             <groupId>org.opendaylight.controller</groupId>
235             <artifactId>sal</artifactId>
236             <version>0.5.1-SNAPSHOT</version>
237             <exclusions>
238                 <exclusion>
239                     <groupId>org.osgi</groupId>
240                     <artifactId>org.osgi.compendium</artifactId>
241                 </exclusion>
242             </exclusions>
243         </dependency>
244         <dependency>
245             <groupId>org.opendaylight.controller</groupId>
246             <artifactId>sal.implementation</artifactId>
247             <version>0.4.0-SNAPSHOT</version>
248             <exclusions>
249                 <exclusion>
250                     <artifactId>commons-io</artifactId>
251                     <groupId>commons-io</groupId>
252                 </exclusion>
253             </exclusions>
254         </dependency>
255         <dependency>
256             <groupId>org.opendaylight.controller</groupId>
257             <artifactId>containermanager</artifactId>
258             <version>0.5.0-SNAPSHOT</version>
259             <exclusions>
260                 <exclusion>
261                     <groupId>org.osgi</groupId>
262                     <artifactId>org.osgi.compendium</artifactId>
263                 </exclusion>
264                 <exclusion>
265                     <artifactId>commons-io</artifactId>
266                     <groupId>commons-io</groupId>
267                 </exclusion>
268             </exclusions>
269         </dependency>
270         <dependency>
271             <groupId>org.opendaylight.controller</groupId>
272             <artifactId>containermanager.it.implementation</artifactId>
273             <version>0.5.0-SNAPSHOT</version>
274             <exclusions>
275                 <exclusion>
276                     <artifactId>commons-io</artifactId>
277                     <groupId>commons-io</groupId>
278                 </exclusion>
279             </exclusions>
280         </dependency>
281         <dependency>
282             <groupId>org.opendaylight.controller</groupId>
283             <artifactId>clustering.stub</artifactId>
284             <version>0.4.0-SNAPSHOT</version>
285             <exclusions>
286                 <exclusion>
287                     <artifactId>commons-io</artifactId>
288                     <groupId>commons-io</groupId>
289                 </exclusion>
290             </exclusions>
291         </dependency>
292
293         <dependency>
294             <groupId>org.apache.felix</groupId>
295             <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
296             <version>3.0.1</version>
297             <exclusions>
298                 <exclusion>
299                     <groupId>org.osgi</groupId>
300                     <artifactId>org.osgi.compendium</artifactId>
301                 </exclusion>
302             </exclusions>
303         </dependency>
304         <dependency>
305             <groupId>eclipselink</groupId>
306             <artifactId>javax.resource</artifactId>
307             <version>1.5.0.v200906010428</version>
308         </dependency>
309         <dependency>
310             <groupId>com.google.guava</groupId>
311             <artifactId>guava</artifactId>
312         </dependency>
313         <dependency>
314             <groupId>org.opendaylight.controller</groupId>
315             <artifactId>sal</artifactId>
316             <version>0.5.1-SNAPSHOT</version>
317         </dependency>
318         <dependency>
319           <groupId>org.opendaylight.controller</groupId>
320           <artifactId>ietf-netconf-monitoring</artifactId>
321         </dependency>
322         <dependency>
323             <groupId>org.opendaylight.yangtools</groupId>
324             <artifactId>yang-binding</artifactId>
325         </dependency>
326         <dependency>
327             <groupId>org.opendaylight.yangtools.model</groupId>
328             <artifactId>yang-ext</artifactId>
329             <version>2013.09.07.3</version>
330         </dependency>
331         <dependency>
332             <groupId>org.opendaylight.yangtools.model</groupId>
333             <artifactId>opendaylight-l2-types</artifactId>
334             <version>2013.08.27.3</version>
335         </dependency>
336         <dependency>
337             <groupId>org.opendaylight.controller</groupId>
338             <artifactId>sal-binding-it</artifactId>
339             <version>1.0-SNAPSHOT</version>
340         </dependency>
341         <dependency>
342             <groupId>org.opendaylight.controller</groupId>
343             <artifactId>sal-binding-config</artifactId>
344             <version>1.0-SNAPSHOT</version>
345         </dependency>
346         <dependency>
347             <groupId>org.opendaylight.controller</groupId>
348             <artifactId>sal-binding-broker-impl</artifactId>
349             <version>1.0-SNAPSHOT</version>
350         </dependency>
351         <dependency>
352             <groupId>org.opendaylight.controller</groupId>
353             <artifactId>sal-broker-impl</artifactId>
354             <version>1.0-SNAPSHOT</version>
355         </dependency>
356
357         <dependency>
358             <groupId>org.opendaylight.controller.model</groupId>
359             <artifactId>model-inventory</artifactId>
360             <version>1.0-SNAPSHOT</version>
361         </dependency>
362         <dependency>
363             <groupId>org.opendaylight.yangtools</groupId>
364             <artifactId>yang-common</artifactId>
365         </dependency>
366         <dependency>
367             <groupId>org.opendaylight.controller</groupId>
368             <artifactId>sal-connector-api</artifactId>
369             <version>1.0-SNAPSHOT</version>
370         </dependency>
371         <dependency>
372             <groupId>org.opendaylight.controller</groupId>
373             <artifactId>sal-common-util</artifactId>
374             <version>1.0-SNAPSHOT</version>
375         </dependency>
376
377         <dependency>
378             <groupId>org.opendaylight.controller</groupId>
379             <artifactId>clustering.services</artifactId>
380             <version>0.4.1-SNAPSHOT</version>
381         </dependency>
382
383         <dependency>
384             <groupId>equinoxSDK381</groupId>
385             <artifactId>org.eclipse.osgi</artifactId>
386             <version>3.8.1.v20120830-144521</version>
387         </dependency>
388
389         <dependency>
390             <groupId>com.fasterxml.jackson.core</groupId>
391             <artifactId>jackson-databind</artifactId>
392             <version>${jackson.version}</version>
393         </dependency>
394
395         <dependency>
396             <groupId>com.fasterxml.jackson.core</groupId>
397             <artifactId>jackson-annotations</artifactId>
398             <version>${jackson.version}</version>
399         </dependency>
400
401         <dependency>
402             <groupId>com.fasterxml.jackson.core</groupId>
403             <artifactId>jackson-core</artifactId>
404             <version>${jackson.version}</version>
405         </dependency>
406
407         <dependency>
408             <groupId>org.zeromq</groupId>
409             <artifactId>jeromq</artifactId>
410             <version>0.3.1</version>
411         </dependency>
412
413         <dependency>
414             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
415             <artifactId>xtend-lib-osgi</artifactId>
416             <version>2.4.3</version>
417             <scope>test</scope>
418         </dependency>
419         <dependency>
420             <groupId>org.opendaylight.controller</groupId>
421             <artifactId>sal-binding-broker-impl</artifactId>
422             <version>1.0-SNAPSHOT</version>
423             <scope>provided</scope>
424         </dependency>
425         <dependency>
426             <groupId>org.ops4j.pax.exam</groupId>
427             <artifactId>pax-exam-container-native</artifactId>
428             <version>${exam.version}</version>
429             <scope>test</scope>
430         </dependency>
431         <dependency>
432             <groupId>org.ops4j.pax.exam</groupId>
433             <artifactId>pax-exam-junit4</artifactId>
434             <version>${exam.version}</version>
435             <scope>test</scope>
436         </dependency>
437         <dependency>
438             <groupId>org.opendaylight.controller</groupId>
439             <artifactId>config-netconf-connector</artifactId>
440             <scope>test</scope>
441         </dependency>
442         <dependency>
443             <groupId>org.opendaylight.controller</groupId>
444             <artifactId>logback-config</artifactId>
445         </dependency>
446         <dependency>
447             <groupId>org.opendaylight.controller</groupId>
448             <artifactId>config-persister-impl</artifactId>
449         </dependency>
450         <dependency>
451             <groupId>org.opendaylight.controller</groupId>
452             <artifactId>config-persister-file-xml-adapter</artifactId>
453         </dependency>
454         <dependency>
455             <groupId>org.opendaylight.controller</groupId>
456             <artifactId>netconf-impl</artifactId>
457         </dependency>
458         <dependency>
459             <groupId>org.opendaylight.controller</groupId>
460             <artifactId>netconf-client</artifactId>
461         </dependency>
462         <dependency>
463             <groupId>org.ops4j.pax.exam</groupId>
464             <artifactId>pax-exam</artifactId>
465             <version>${exam.version}</version>
466             <!-- Compile scope here is intentional, it is used in TestHelper
467                 class which could be downloaded via nexus and reused in other integration
468                 tests. -->
469             <scope>compile</scope>
470         </dependency>
471         <dependency>
472             <groupId>org.ops4j.pax.exam</groupId>
473             <artifactId>pax-exam-link-mvn</artifactId>
474             <version>${exam.version}</version>
475             <scope>test</scope>
476         </dependency>
477         <dependency>
478             <groupId>equinoxSDK381</groupId>
479             <artifactId>org.eclipse.osgi</artifactId>
480             <version>3.8.1.v20120830-144521</version>
481             <scope>test</scope>
482         </dependency>
483         <dependency>
484             <groupId>org.slf4j</groupId>
485             <artifactId>log4j-over-slf4j</artifactId>
486             <version>1.7.2</version>
487         </dependency>
488         <dependency>
489             <groupId>ch.qos.logback</groupId>
490             <artifactId>logback-core</artifactId>
491             <version>1.0.9</version>
492         </dependency>
493         <dependency>
494             <groupId>ch.qos.logback</groupId>
495             <artifactId>logback-classic</artifactId>
496             <version>1.0.9</version>
497         </dependency>
498         <dependency>
499             <groupId>org.mockito</groupId>
500             <artifactId>mockito-all</artifactId>
501             <scope>test</scope>
502         </dependency>
503         <dependency>
504             <groupId>org.opendaylight.controller.model</groupId>
505             <artifactId>model-flow-service</artifactId>
506             <version>1.0-SNAPSHOT</version>
507             <scope>provided</scope>
508         </dependency>
509         <dependency>
510             <groupId>org.opendaylight.controller</groupId>
511             <artifactId>config-manager</artifactId>
512             <version>0.2.3-SNAPSHOT</version>
513             <exclusions>
514                 <exclusion>
515                     <artifactId>commons-io</artifactId>
516                     <groupId>commons-io</groupId>
517                 </exclusion>
518             </exclusions>
519         </dependency>
520         <dependency>
521             <groupId>org.opendaylight.controller.model</groupId>
522             <artifactId>model-flow-management</artifactId>
523             <version>1.0-SNAPSHOT</version>
524             <scope>provided</scope>
525         </dependency>
526         <dependency>
527             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
528             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
529             <version>4.0</version>
530         </dependency>
531     </dependencies>
532 </project>