Re-added config.version to config-module-archetype.
[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.1-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.1-SNAPSHOT</version>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.controller.tests</groupId>
102             <artifactId>sal-remoterpc-connector-test-consumer</artifactId>
103             <version>1.1-SNAPSHOT</version>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.controller</groupId>
107             <artifactId>sal-broker-impl</artifactId>
108             <version>1.1-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           <version>0.2.5-SNAPSHOT</version>
322         </dependency>
323         <dependency>
324             <groupId>org.opendaylight.yangtools</groupId>
325             <artifactId>yang-binding</artifactId>
326         </dependency>
327         <dependency>
328             <groupId>org.opendaylight.yangtools.model</groupId>
329             <artifactId>yang-ext</artifactId>
330             <version>2013.09.07.3</version>
331         </dependency>
332         <dependency>
333             <groupId>org.opendaylight.yangtools.model</groupId>
334             <artifactId>opendaylight-l2-types</artifactId>
335             <version>2013.08.27.3</version>
336         </dependency>
337         <dependency>
338             <groupId>org.opendaylight.controller</groupId>
339             <artifactId>sal-binding-it</artifactId>
340             <version>1.0-SNAPSHOT</version>
341         </dependency>
342         <dependency>
343             <groupId>org.opendaylight.controller</groupId>
344             <artifactId>sal-binding-config</artifactId>
345             <version>1.0-SNAPSHOT</version>
346         </dependency>
347         <dependency>
348             <groupId>org.opendaylight.controller</groupId>
349             <artifactId>sal-binding-broker-impl</artifactId>
350             <version>1.0-SNAPSHOT</version>
351         </dependency>
352         <dependency>
353             <groupId>org.opendaylight.controller</groupId>
354             <artifactId>sal-broker-impl</artifactId>
355             <version>1.0-SNAPSHOT</version>
356         </dependency>
357
358         <dependency>
359             <groupId>org.opendaylight.controller.model</groupId>
360             <artifactId>model-inventory</artifactId>
361             <version>1.0-SNAPSHOT</version>
362         </dependency>
363         <dependency>
364             <groupId>org.opendaylight.yangtools</groupId>
365             <artifactId>yang-common</artifactId>
366         </dependency>
367         <dependency>
368             <groupId>org.opendaylight.controller</groupId>
369             <artifactId>sal-connector-api</artifactId>
370             <version>1.0-SNAPSHOT</version>
371         </dependency>
372         <dependency>
373             <groupId>org.opendaylight.controller</groupId>
374             <artifactId>sal-common-util</artifactId>
375             <version>1.0-SNAPSHOT</version>
376         </dependency>
377
378         <dependency>
379             <groupId>org.opendaylight.controller</groupId>
380             <artifactId>clustering.services</artifactId>
381             <version>0.4.1-SNAPSHOT</version>
382         </dependency>
383
384         <dependency>
385             <groupId>equinoxSDK381</groupId>
386             <artifactId>org.eclipse.osgi</artifactId>
387             <version>3.8.1.v20120830-144521</version>
388         </dependency>
389
390         <dependency>
391             <groupId>com.fasterxml.jackson.core</groupId>
392             <artifactId>jackson-databind</artifactId>
393             <version>${jackson.version}</version>
394         </dependency>
395
396         <dependency>
397             <groupId>com.fasterxml.jackson.core</groupId>
398             <artifactId>jackson-annotations</artifactId>
399             <version>${jackson.version}</version>
400         </dependency>
401
402         <dependency>
403             <groupId>com.fasterxml.jackson.core</groupId>
404             <artifactId>jackson-core</artifactId>
405             <version>${jackson.version}</version>
406         </dependency>
407
408         <dependency>
409             <groupId>org.zeromq</groupId>
410             <artifactId>jeromq</artifactId>
411             <version>0.3.1</version>
412         </dependency>
413
414         <dependency>
415             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
416             <artifactId>xtend-lib-osgi</artifactId>
417             <version>2.4.3</version>
418             <scope>test</scope>
419         </dependency>
420         <dependency>
421             <groupId>org.opendaylight.controller</groupId>
422             <artifactId>sal-binding-broker-impl</artifactId>
423             <version>1.0-SNAPSHOT</version>
424             <scope>provided</scope>
425         </dependency>
426         <dependency>
427             <groupId>org.ops4j.pax.exam</groupId>
428             <artifactId>pax-exam-container-native</artifactId>
429             <version>${exam.version}</version>
430             <scope>test</scope>
431         </dependency>
432         <dependency>
433             <groupId>org.ops4j.pax.exam</groupId>
434             <artifactId>pax-exam-junit4</artifactId>
435             <version>${exam.version}</version>
436             <scope>test</scope>
437         </dependency>
438         <dependency>
439             <groupId>org.opendaylight.controller</groupId>
440             <artifactId>config-netconf-connector</artifactId>
441             <scope>test</scope>
442         </dependency>
443         <dependency>
444             <groupId>org.opendaylight.controller</groupId>
445             <artifactId>logback-config</artifactId>
446         </dependency>
447         <dependency>
448             <groupId>org.opendaylight.controller</groupId>
449             <artifactId>config-persister-impl</artifactId>
450         </dependency>
451         <dependency>
452             <groupId>org.opendaylight.controller</groupId>
453             <artifactId>config-persister-file-xml-adapter</artifactId>
454         </dependency>
455         <dependency>
456             <groupId>org.opendaylight.controller</groupId>
457             <artifactId>netconf-impl</artifactId>
458         </dependency>
459         <dependency>
460             <groupId>org.opendaylight.controller</groupId>
461             <artifactId>netconf-client</artifactId>
462         </dependency>
463         <dependency>
464             <groupId>org.ops4j.pax.exam</groupId>
465             <artifactId>pax-exam</artifactId>
466             <version>${exam.version}</version>
467             <!-- Compile scope here is intentional, it is used in TestHelper
468                 class which could be downloaded via nexus and reused in other integration
469                 tests. -->
470             <scope>compile</scope>
471         </dependency>
472         <dependency>
473             <groupId>org.ops4j.pax.exam</groupId>
474             <artifactId>pax-exam-link-mvn</artifactId>
475             <version>${exam.version}</version>
476             <scope>test</scope>
477         </dependency>
478         <dependency>
479             <groupId>equinoxSDK381</groupId>
480             <artifactId>org.eclipse.osgi</artifactId>
481             <version>3.8.1.v20120830-144521</version>
482             <scope>test</scope>
483         </dependency>
484         <dependency>
485             <groupId>org.slf4j</groupId>
486             <artifactId>log4j-over-slf4j</artifactId>
487             <version>1.7.2</version>
488         </dependency>
489         <dependency>
490             <groupId>ch.qos.logback</groupId>
491             <artifactId>logback-core</artifactId>
492             <version>1.0.9</version>
493         </dependency>
494         <dependency>
495             <groupId>ch.qos.logback</groupId>
496             <artifactId>logback-classic</artifactId>
497             <version>1.0.9</version>
498         </dependency>
499         <dependency>
500             <groupId>org.mockito</groupId>
501             <artifactId>mockito-all</artifactId>
502             <scope>test</scope>
503         </dependency>
504         <dependency>
505             <groupId>org.opendaylight.controller.model</groupId>
506             <artifactId>model-flow-service</artifactId>
507             <version>1.0-SNAPSHOT</version>
508             <scope>provided</scope>
509         </dependency>
510         <dependency>
511             <groupId>org.opendaylight.controller</groupId>
512             <artifactId>config-manager</artifactId>
513             <version>0.2.3-SNAPSHOT</version>
514             <exclusions>
515                 <exclusion>
516                     <artifactId>commons-io</artifactId>
517                     <groupId>commons-io</groupId>
518                 </exclusion>
519             </exclusions>
520         </dependency>
521         <dependency>
522             <groupId>org.opendaylight.controller.model</groupId>
523             <artifactId>model-flow-management</artifactId>
524             <version>1.0-SNAPSHOT</version>
525             <scope>provided</scope>
526         </dependency>
527         <dependency>
528             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
529             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
530             <version>4.0</version>
531         </dependency>
532     </dependencies>
533 </project>