Add hosttracker.version property to integrationtests
[lispflowmapping.git] / mappingservice / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7                 <groupId>org.opendaylight.controller</groupId>
8                 <artifactId>commons.integrationtest</artifactId>
9                 <version>0.5.1-SNAPSHOT</version>
10                 <relativePath></relativePath>
11         </parent>
12         <groupId>org.opendaylight.lispflowmapping</groupId>
13         <artifactId>mappingservice.integrationtest</artifactId>
14         <scm>
15                 <connection>scm:git:https://git.opendaylight.org/gerrit/p/lispflowmapping.git</connection>
16                 <developerConnection>scm:git:ssh://git.opendaylight.org:29418/lispflowmapping.git</developerConnection>
17                 <url>https://wiki.opendaylight.org/view/OpenDaylight_Lisp_Flow_Mapping:Main</url>
18                 <tag>HEAD</tag>
19         </scm>
20
21         <repositories>
22                 <!-- OpenDayLight Released artifact -->
23                 <repository>
24                         <id>opendaylight-release</id>
25                         <name>opendaylight-release</name>
26                         <url>http://nexus.opendaylight.org/content/repositories/opendaylight.release/</url>
27                 </repository>
28                 <!-- OpenDayLight Snapshot artifact -->
29                 <repository>
30                         <id>opendaylight-snapshot</id>
31                         <name>opendaylight-snapshot</name>
32                         <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
33                 </repository>
34         </repositories>
35         <build>
36                 <pluginManagement>
37                         <plugins>
38
39                                 <plugin>
40                                         <groupId>org.eclipse.m2e</groupId>
41                                         <artifactId>lifecycle-mapping</artifactId>
42                                         <version>1.0.0</version>
43                                         <configuration>
44                                                 <lifecycleMappingMetadata>
45                                                         <pluginExecutions>
46                                                                 <pluginExecution>
47                                                                         <pluginExecutionFilter>
48                                                                                 <groupId>org.ops4j.pax.exam</groupId>
49                                                                                 <artifactId>maven-paxexam-plugin</artifactId>
50                                                                                 <versionRange>[1.2.4,)</versionRange>
51                                                                                 <goals>
52                                                                                         <goal>generate-depends-file</goal>
53                                                                                 </goals>
54                                                                         </pluginExecutionFilter>
55                                                                         <action>
56                                                                                 <execute>
57                                                                                         <runOnIncremental>false</runOnIncremental>
58                                                                                 </execute>
59                                                                         </action>
60                                                                 </pluginExecution>
61                                                         </pluginExecutions>
62                                                 </lifecycleMappingMetadata>
63                                         </configuration>
64                                 </plugin>
65                         </plugins>
66                 </pluginManagement>
67                 <plugins>
68                         <plugin>
69                                 <groupId>org.ops4j.pax.exam</groupId>
70                                 <artifactId>maven-paxexam-plugin</artifactId>
71                                 <version>1.2.4</version>
72                                 <executions>
73                                         <execution>
74                                                 <id>generate-config</id>
75                                                 <goals>
76                                                         <goal>generate-depends-file</goal>
77                                                 </goals>
78                                         </execution>
79                                 </executions>
80                         </plugin>
81                         <plugin>
82                                 <groupId>org.apache.maven.plugins</groupId>
83                                 <artifactId>maven-checkstyle-plugin</artifactId>
84                                 <version>${checkstyle.version}</version>
85                                 <dependencies>
86                                         <dependency>
87                                                 <groupId>org.opendaylight.controller</groupId>
88                                                 <artifactId>checkstyle</artifactId>
89                                                 <version>0.0.2-SNAPSHOT</version>
90                                         </dependency>
91                                 </dependencies>
92                                 <configuration>
93                                         <skip>true</skip>
94                                 </configuration>
95                         </plugin>
96                         <plugin>
97                                 <groupId>org.apache.maven.plugins</groupId>
98                                 <artifactId>maven-surefire-plugin</artifactId>
99                                 <version>${surefire.version}</version>
100                                 <configuration>
101                                         <skipTests>false</skipTests>
102                                         <skip>${skipIntegrationTest}</skip>
103                                 </configuration>
104                         </plugin>
105                         <plugin>
106                                 <groupId>org.jacoco</groupId>
107                                 <artifactId>jacoco-maven-plugin</artifactId>
108                                 <version>0.5.3.201107060350</version>
109                                 <configuration>
110                                         <destFile>../implementation/target/jacoco-it.exec</destFile>
111                                         <includes>org.opendaylight.controller.*</includes>
112                                         <includes>org.opendaylight.lispflowmapping.*</includes>
113                                 </configuration>
114                                 <executions>
115                                         <execution>
116                                                 <id>pre-test</id>
117                                                 <goals>
118                                                         <goal>prepare-agent</goal>
119                                                 </goals>
120                                         </execution>
121                                         <execution>
122                                                 <id>post-test</id>
123                                                 <configuration>
124                                                         <skip>true</skip>
125                                                 </configuration>
126                                         </execution>
127                                 </executions>
128                         </plugin>
129                 </plugins>
130         </build>
131         <properties>
132                 <lispflowmapping.version>1.1.0-SNAPSHOT</lispflowmapping.version>
133                 <exam.version>3.0.0</exam.version>
134                 <url.version>1.5.0</url.version>
135                 <!-- Sonar jacoco plugin to get integration test coverage info -->
136                 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
137                 <sonar.jacoco.reportPath>../implementation/target/jacoco.exec</sonar.jacoco.reportPath>
138                 <sonar.jacoco.itReportPath>../implementaiton/target/jacoco-it.exec</sonar.jacoco.itReportPath>
139                 <sonar.language>java</sonar.language>
140                 <!-- Dependency Versions -->
141                 <slf4j.version>1.7.2</slf4j.version>
142                 <osgi.core.version>5.0.0</osgi.core.version>
143                 <junit.version>4.8.1</junit.version>
144                 <xtend.version>2.4.3</xtend.version>
145                 <old-jackson.version>1.9.8</old-jackson.version>
146                 <hosttracker.version>0.5.1-SNAPSHOT</hosttracker.version>
147         </properties>
148         <dependencies>
149
150                 <dependency>
151                         <groupId>org.opendaylight.controller</groupId>
152                         <artifactId>sal-binding-api</artifactId>
153                         <version>1.0-SNAPSHOT</version>
154                 </dependency>
155                 <dependency>
156                         <groupId>org.opendaylight.controller</groupId>
157                         <artifactId>sal-binding-it</artifactId>
158                         <version>1.0-SNAPSHOT</version>
159                 </dependency>
160                 <dependency>
161                         <groupId>org.opendaylight.controller</groupId>
162                         <artifactId>sal-binding-util</artifactId>
163                         <version>1.0-SNAPSHOT</version>
164                 </dependency>
165                 <dependency>
166                         <groupId>org.opendaylight.controller</groupId>
167                         <artifactId>sal-common-api</artifactId>
168                         <version>1.0-SNAPSHOT</version>
169                 </dependency>
170
171                 <dependency>
172                         <groupId>org.opendaylight.controller</groupId>
173                         <artifactId>sal-common-util</artifactId>
174                         <version>1.0-SNAPSHOT</version>
175                 </dependency>
176                 <dependency>
177                         <groupId>org.opendaylight.controller</groupId>
178                         <artifactId>commons.integrationtest</artifactId>
179                         <type>pom</type>
180                         <version>0.5.1-SNAPSHOT</version>
181                 </dependency>
182                 <dependency>
183                         <groupId>org.opendaylight.lispflowmapping</groupId>
184                         <artifactId>mappingservice.yangmodel</artifactId>
185                         <version>${lispflowmapping.version}</version>
186                 </dependency>
187                 <dependency>
188                         <groupId>org.opendaylight.lispflowmapping</groupId>
189                         <artifactId>mappingservice.config</artifactId>
190                         <version>${lispflowmapping.version}</version>
191                 </dependency>
192                 <dependency>
193                         <groupId>org.opendaylight.lispflowmapping</groupId>
194                         <artifactId>mappingservice.api</artifactId>
195                         <version>${lispflowmapping.version}</version>
196                 </dependency>
197                 <dependency>
198                         <groupId>org.opendaylight.lispflowmapping</groupId>
199                         <artifactId>mappingservice.implementation</artifactId>
200                         <version>${lispflowmapping.version}</version>
201                 </dependency>
202                 <dependency>
203                         <groupId>org.opendaylight.lispflowmapping</groupId>
204                         <artifactId>mappingservice.southbound</artifactId>
205                         <version>${lispflowmapping.version}</version>
206                 </dependency>
207                 <dependency>
208                         <groupId>org.opendaylight.lispflowmapping</groupId>
209                         <artifactId>mappingservice.northbound</artifactId>
210                         <version>${lispflowmapping.version}</version>
211                 </dependency>
212                 <dependency>
213                         <groupId>org.opendaylight.controller</groupId>
214                         <artifactId>containermanager</artifactId>
215                         <version>0.5.1-SNAPSHOT</version>
216                 </dependency>
217                 <dependency>
218                         <groupId>org.opendaylight.controller</groupId>
219                         <artifactId>netconf-impl</artifactId>
220                         <version>${netconf.version}</version>
221                 </dependency>
222                 <dependency>
223             <groupId>org.osgi</groupId>
224             <artifactId>org.osgi.core</artifactId>
225             <version>${osgi.core.version}</version>
226             <scope>provided</scope>
227         </dependency>
228                 <dependency>
229                         <groupId>org.opendaylight.controller</groupId>
230                         <artifactId>containermanager.it.implementation</artifactId>
231                         <version>0.5.1-SNAPSHOT</version>
232                 </dependency>
233                 <dependency>
234                         <groupId>org.opendaylight.controller</groupId>
235                         <artifactId>protocol_plugins.stub</artifactId>
236                         <version>0.4.1-SNAPSHOT</version>
237                 </dependency>
238
239                 <dependency>
240                         <groupId>org.opendaylight.controller</groupId>
241                         <artifactId>protocol-framework</artifactId>
242                 </dependency>
243                 <dependency>
244                         <groupId>org.opendaylight.controller</groupId>
245                         <artifactId>sal</artifactId>
246                         <version>${sal.version}</version>
247                 </dependency>
248                 <dependency>
249                         <groupId>org.opendaylight.controller</groupId>
250                         <artifactId>clustering.services</artifactId>
251                         <version>0.5.0-SNAPSHOT</version>
252                 </dependency>
253                 <dependency>
254                         <groupId>org.opendaylight.controller</groupId>
255                         <artifactId>clustering.stub</artifactId>
256                         <version>0.4.1-SNAPSHOT</version>
257                 </dependency>
258
259                 <dependency>
260                         <groupId>org.codehaus.enunciate</groupId>
261                         <artifactId>enunciate-core-annotations</artifactId>
262                         <version>${enunciate.version}</version>
263                 </dependency>
264                 <dependency>
265                         <groupId>org.slf4j</groupId>
266                         <artifactId>jcl-over-slf4j</artifactId>
267                         <version>${slf4j.version}</version>
268                 </dependency>
269                 <dependency>
270                         <groupId>org.slf4j</groupId>
271                         <artifactId>slf4j-api</artifactId>
272                         <version>${slf4j.version}</version>
273                 </dependency>
274                 <dependency>
275                         <groupId>org.slf4j</groupId>
276                         <artifactId>log4j-over-slf4j</artifactId>
277                         <version>${slf4j.version}</version>
278                 </dependency>
279                 <dependency>
280                         <groupId>ch.qos.logback</groupId>
281                         <artifactId>logback-core</artifactId>
282                         <version>${logback.version}</version>
283                 </dependency>
284                 <dependency>
285                         <groupId>ch.qos.logback</groupId>
286                         <artifactId>logback-classic</artifactId>
287                         <version>${logback.version}</version>
288                 </dependency>
289                 <dependency>
290                         <groupId>commons-io</groupId>
291                         <artifactId>commons-io</artifactId>
292                 </dependency>
293                 <dependency>
294                         <groupId>commons-fileupload</groupId>
295                         <artifactId>commons-fileupload</artifactId>
296                 </dependency>
297                 <dependency>
298                         <groupId>commons-codec</groupId>
299                         <artifactId>commons-codec</artifactId>
300                 </dependency>
301                 <dependency>
302                         <groupId>equinoxSDK381</groupId>
303                         <artifactId>javax.servlet</artifactId>
304                 </dependency>
305                 <dependency>
306                         <groupId>equinoxSDK381</groupId>
307                         <artifactId>javax.servlet.jsp</artifactId>
308                 </dependency>
309                 <dependency>
310                         <groupId>equinoxSDK381</groupId>
311                         <artifactId>org.eclipse.equinox.ds</artifactId>
312                 </dependency>
313                 <dependency>
314                         <groupId>equinoxSDK381</groupId>
315                         <artifactId>org.eclipse.equinox.util</artifactId>
316                 </dependency>
317                 <dependency>
318                         <groupId>equinoxSDK381</groupId>
319                         <artifactId>org.eclipse.osgi</artifactId>
320                 </dependency>
321                 <dependency>
322                         <groupId>equinoxSDK381</groupId>
323                         <artifactId>org.apache.felix.gogo.command</artifactId>
324                 </dependency>
325                 <dependency>
326                         <groupId>equinoxSDK381</groupId>
327                         <artifactId>org.apache.felix.gogo.runtime</artifactId>
328                 </dependency>
329                 <dependency>
330                         <groupId>equinoxSDK381</groupId>
331                         <artifactId>org.apache.felix.gogo.shell</artifactId>
332                 </dependency>
333                 <dependency>
334                         <groupId>equinoxSDK381</groupId>
335                         <artifactId>org.eclipse.equinox.cm</artifactId>
336                 </dependency>
337                 <dependency>
338                         <groupId>equinoxSDK381</groupId>
339                         <artifactId>org.eclipse.equinox.console</artifactId>
340                 </dependency>
341                 <dependency>
342                         <groupId>equinoxSDK381</groupId>
343                         <artifactId>org.eclipse.equinox.launcher</artifactId>
344                 </dependency>
345                 <dependency>
346                         <groupId>org.apache.felix</groupId>
347                         <artifactId>org.apache.felix.dependencymanager</artifactId>
348                 </dependency>
349                 <dependency>
350                         <groupId>org.apache.felix</groupId>
351                         <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
352                 </dependency>
353                 <dependency>
354                         <groupId>com.google.code.gson</groupId>
355                         <artifactId>gson</artifactId>
356                         <scope>compile</scope>
357                 </dependency>
358                 <dependency>
359                         <groupId>org.jboss.spec.javax.transaction</groupId>
360                         <artifactId>jboss-transaction-api_1.1_spec</artifactId>
361                 </dependency>
362                 <dependency>
363                         <groupId>org.apache.felix</groupId>
364                         <artifactId>org.apache.felix.fileinstall</artifactId>
365                 </dependency>
366                 <dependency>
367                         <groupId>org.apache.commons</groupId>
368                         <artifactId>commons-lang3</artifactId>
369                         <version>${commons.lang.version}</version>
370                 </dependency>
371                 <dependency>
372                         <groupId>virgomirror</groupId>
373                         <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
374                 </dependency>
375                 <dependency>
376                         <groupId>eclipselink</groupId>
377                         <artifactId>javax.persistence</artifactId>
378                 </dependency>
379                 <dependency>
380                         <groupId>eclipselink</groupId>
381                         <artifactId>javax.resource</artifactId>
382                 </dependency>
383                 <dependency>
384                         <groupId>orbit</groupId>
385                         <artifactId>javax.activation</artifactId>
386                 </dependency>
387                 <dependency>
388                         <groupId>orbit</groupId>
389                         <artifactId>javax.annotation</artifactId>
390                 </dependency>
391                 <dependency>
392                         <groupId>orbit</groupId>
393                         <artifactId>javax.ejb</artifactId>
394                 </dependency>
395                 <dependency>
396                         <groupId>orbit</groupId>
397                         <artifactId>javax.el</artifactId>
398                 </dependency>
399                 <dependency>
400                         <groupId>orbit</groupId>
401                         <artifactId>javax.mail.glassfish</artifactId>
402                 </dependency>
403                 <dependency>
404                         <groupId>orbit</groupId>
405                         <artifactId>javax.xml.rpc</artifactId>
406                 </dependency>
407                 <dependency>
408                         <groupId>orbit</groupId>
409                         <artifactId>org.apache.catalina</artifactId>
410                 </dependency>
411                 <dependency>
412                         <groupId>orbit</groupId>
413                         <artifactId>org.apache.catalina.ha</artifactId>
414                 </dependency>
415                 <dependency>
416                         <groupId>orbit</groupId>
417                         <artifactId>org.apache.catalina.tribes</artifactId>
418                 </dependency>
419                 <dependency>
420                         <groupId>orbit</groupId>
421                         <artifactId>org.apache.coyote</artifactId>
422                 </dependency>
423                 <dependency>
424                         <groupId>orbit</groupId>
425                         <artifactId>org.apache.el</artifactId>
426                 </dependency>
427                 <dependency>
428                         <groupId>orbit</groupId>
429                         <artifactId>org.apache.jasper</artifactId>
430                 </dependency>
431                 <dependency>
432                         <groupId>orbit</groupId>
433                         <artifactId>org.apache.juli.extras</artifactId>
434                 </dependency>
435                 <dependency>
436                         <groupId>orbit</groupId>
437                         <artifactId>org.apache.tomcat.api</artifactId>
438                 </dependency>
439                 <dependency>
440                         <groupId>orbit</groupId>
441                         <artifactId>org.apache.tomcat.util</artifactId>
442                 </dependency>
443                 <dependency>
444                         <groupId>orbit</groupId>
445                         <artifactId>javax.servlet.jsp.jstl</artifactId>
446                 </dependency>
447                 <dependency>
448                         <groupId>orbit</groupId>
449                         <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
450                 </dependency>
451                 <!-- Add Pax Exam -->
452                 <dependency>
453                         <exclusions>
454                                 <exclusion>  <!-- declare the exclusion here -->
455                                         <groupId>org.ops4j.pax.exam</groupId>
456                                         <artifactId>pax-exam-container-native</artifactId>
457                                 </exclusion>
458                         </exclusions>
459                         <groupId>org.ops4j.pax.exam</groupId>
460                         <artifactId>pax-exam-container-forked</artifactId>
461                         <scope>test</scope>
462                         <version>${exam.version}</version>
463                 </dependency>
464                 <dependency>
465                         <groupId>org.ops4j.pax.exam</groupId>
466                         <artifactId>pax-exam-junit4</artifactId>
467                         <scope>test</scope>
468                 </dependency>
469                 <dependency>
470                         <groupId>org.ops4j.pax.exam</groupId>
471                         <artifactId>pax-exam</artifactId>
472                         <version>${exam.version}</version>
473                         <!-- Compile scope here is intentional, it is used in TestHelper class 
474                                 which could be downloaded via nexus and reused in other integration tests. -->
475                         <scope>compile</scope>
476                 </dependency>
477                 <dependency>
478                         <groupId>org.ops4j.pax.exam</groupId>
479                         <artifactId>pax-exam-link-mvn</artifactId>
480                         <scope>test</scope>
481                 </dependency>
482                 <dependency>
483                         <groupId>org.ow2.asm</groupId>
484                         <artifactId>asm-all</artifactId>
485                 </dependency>
486                 <dependency>
487                         <groupId>org.springframework</groupId>
488                         <artifactId>org.springframework.asm</artifactId>
489                         <version>${spring.version}</version>
490                 </dependency>
491                 <dependency>
492                         <groupId>org.springframework</groupId>
493                         <artifactId>org.springframework.aop</artifactId>
494                         <version>${spring.version}</version>
495                 </dependency>
496                 <dependency>
497                         <groupId>org.springframework</groupId>
498                         <artifactId>org.springframework.context</artifactId>
499                         <version>${spring.version}</version>
500                 </dependency>
501                 <dependency>
502                         <groupId>org.springframework</groupId>
503                         <artifactId>org.springframework.context.support</artifactId>
504                         <version>${spring.version}</version>
505                 </dependency>
506                 <dependency>
507                         <groupId>org.springframework</groupId>
508                         <artifactId>org.springframework.core</artifactId>
509                         <version>${spring.version}</version>
510                 </dependency>
511                 <dependency>
512                         <groupId>org.springframework</groupId>
513                         <artifactId>org.springframework.beans</artifactId>
514                         <version>${spring.version}</version>
515                 </dependency>
516                 <dependency>
517                         <groupId>org.springframework</groupId>
518                         <artifactId>org.springframework.expression</artifactId>
519                         <version>${spring.version}</version>
520                 </dependency>
521                 <dependency>
522                         <groupId>org.springframework</groupId>
523                         <artifactId>org.springframework.web</artifactId>
524                         <version>${spring.version}</version>
525                 </dependency>
526                 <dependency>
527                         <groupId>org.aopalliance</groupId>
528                         <artifactId>com.springsource.org.aopalliance</artifactId>
529                 </dependency>
530                 <dependency>
531                         <groupId>org.springframework</groupId>
532                         <artifactId>org.springframework.web.servlet</artifactId>
533                         <version>${spring.version}</version>
534                 </dependency>
535                 <!-- Spring security -->
536                 <dependency>
537                         <groupId>org.springframework.security</groupId>
538                         <artifactId>spring-security-config</artifactId>
539                         <version>${spring-security.version}</version>
540                 </dependency>
541                 <dependency>
542                         <groupId>org.springframework.security</groupId>
543                         <artifactId>spring-security-core</artifactId>
544                         <version>${spring-security.version}</version>
545                 </dependency>
546                 <dependency>
547                         <groupId>org.springframework.security</groupId>
548                         <artifactId>spring-security-web</artifactId>
549                         <version>${spring-security.version}</version>
550                 </dependency>
551                 <dependency>
552                         <groupId>org.springframework.security</groupId>
553                         <artifactId>spring-security-taglibs</artifactId>
554                         <version>${spring-security.version}</version>
555                 </dependency>
556                 <dependency>
557                         <groupId>org.springframework</groupId>
558                         <artifactId>org.springframework.transaction</artifactId>
559                         <version>${spring-security.version}</version>
560                 </dependency>
561                 <!-- Visual VM hook -->
562                 <dependency>
563                         <groupId>org.ow2.chameleon.management</groupId>
564                         <artifactId>chameleon-mbeans</artifactId>
565                 </dependency>
566                 <!-- Jersey for JAXRS -->
567                 <dependency>
568                         <groupId>com.sun.jersey</groupId>
569                         <artifactId>jersey-core</artifactId>
570                         <version>${jersey.version}</version>
571                 </dependency>
572                 <dependency>
573                         <groupId>com.sun.jersey</groupId>
574                         <artifactId>jersey-json</artifactId>
575                         <version>${jersey.version}</version>
576                 </dependency>
577                 <dependency>
578                         <groupId>com.sun.jersey</groupId>
579                         <artifactId>jersey-server</artifactId>
580                         <version>${jersey.version}</version>
581                 </dependency>
582                 <dependency>
583                         <groupId>com.sun.jersey</groupId>
584                         <artifactId>jersey-client</artifactId>
585                         <version>${jersey.version}</version>
586                 </dependency>
587                 <dependency>
588         <groupId>com.sun.jersey</groupId>
589         <artifactId>jersey-json</artifactId>
590         <version>${jersey.version}</version>
591       </dependency>
592                 <dependency>
593                         <groupId>org.opendaylight.yangtools.thirdparty</groupId>
594                         <artifactId>xtend-lib-osgi</artifactId>
595                         <version>2.4.3</version>
596                 </dependency>
597                 <dependency>
598                         <groupId>org.opendaylight.yangtools.model</groupId>
599                         <artifactId>opendaylight-l2-types</artifactId>
600                         <version>${opendaylight-l2-types.version}</version>
601                 </dependency>
602                 <dependency>
603                         <groupId>org.opendaylight.yangtools.model</groupId>
604                         <artifactId>yang-ext</artifactId>
605                         <version>${yang-ext.version}</version>
606                 </dependency>
607                 <dependency>
608                         <groupId>org.opendaylight.controller</groupId>
609                         <artifactId>sal-binding-broker-impl</artifactId>
610                         <version>1.0-SNAPSHOT</version>
611                 </dependency>
612                 <dependency>
613                         <groupId>org.opendaylight.controller</groupId>
614                         <artifactId>config-netconf-connector</artifactId>
615                         <version>${netconf.version}</version>
616                         <scope>test</scope>
617                 </dependency>
618                 <dependency>
619             <groupId>org.opendaylight.controller</groupId>
620             <artifactId>config-persister-file-xml-adapter</artifactId>
621             <version>${config.version}</version>
622         </dependency>
623                 <dependency>
624                         <groupId>org.opendaylight.controller.model</groupId>
625                         <artifactId>model-inventory</artifactId>
626                         <version>${mdsal.version}</version>
627                 </dependency>
628                 <dependency>
629                         <groupId>org.javassist</groupId>
630                         <artifactId>javassist</artifactId>
631                 </dependency>
632                 <dependency>
633                         <groupId>org.opendaylight.controller.thirdparty</groupId>
634                         <artifactId>exificient</artifactId>
635                 </dependency>
636
637                 <dependency>
638                         <groupId>org.opendaylight.controller</groupId>
639                         <artifactId>config-manager</artifactId>
640                         <version>0.2.3-SNAPSHOT</version>
641                 </dependency>
642                 <dependency>
643                         <groupId>org.opendaylight.controller.thirdparty</groupId>
644                         <artifactId>com.sun.jersey.jersey-servlet</artifactId>
645                 </dependency>
646
647                 <dependency>
648                         <groupId>com.fasterxml.jackson.core</groupId>
649                         <artifactId>jackson-annotations</artifactId>
650                         <version>${jackson.version}</version>
651                 </dependency>
652
653                 <dependency>
654                         <groupId>com.fasterxml.jackson.core</groupId>
655                         <artifactId>jackson-core</artifactId>
656                         <version>${jackson.version}</version>
657                 </dependency>
658
659                 <dependency>
660                         <groupId>com.fasterxml.jackson.core</groupId>
661                         <artifactId>jackson-databind</artifactId>
662                         <version>${jackson.version}</version>
663                 </dependency>
664
665                 <dependency>
666                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
667                         <artifactId>jackson-jaxrs-json-provider</artifactId>
668                         <version>${jackson.version}</version>
669                 </dependency>
670
671                 <dependency>
672                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
673                         <artifactId>jackson-jaxrs-base</artifactId>
674                         <version>${jackson.version}</version>
675                 </dependency>
676
677                 <dependency>
678                         <groupId>org.codehaus.jackson</groupId>
679                         <artifactId>jackson-mapper-asl</artifactId>
680                         <version>${old-jackson.version}</version>
681                 </dependency>
682                 <dependency>
683                         <groupId>org.codehaus.jackson</groupId>
684                         <artifactId>jackson-core-asl</artifactId>
685                         <version>${old-jackson.version}</version>
686                 </dependency>
687                 <dependency>
688                         <groupId>org.codehaus.jackson</groupId>
689                         <artifactId>jackson-jaxrs</artifactId>
690                         <version>${old-jackson.version}</version>
691                 </dependency>
692                 <dependency>
693                         <groupId>org.codehaus.jackson</groupId>
694                         <artifactId>jackson-xc</artifactId>
695                         <version>${old-jackson.version}</version>
696                 </dependency>
697                 <dependency>
698                         <groupId>org.codehaus.jettison</groupId>
699                         <artifactId>jettison</artifactId>
700                 </dependency>
701                 <dependency>
702                         <groupId>org.opendaylight.controller</groupId>
703                         <artifactId>commons.northbound</artifactId>
704                         <version>0.4.1-SNAPSHOT</version>
705                 </dependency>
706                 <dependency>
707                         <groupId>org.opendaylight.controller</groupId>
708                         <artifactId>bundlescanner</artifactId>
709                         <version>0.4.1-SNAPSHOT</version>
710                 </dependency>
711
712                 <dependency>
713                         <groupId>org.opendaylight.controller</groupId>
714                         <artifactId>bundlescanner.implementation</artifactId>
715                         <version>0.4.1-SNAPSHOT</version>
716                 </dependency>
717                 <dependency>
718                         <groupId>org.opendaylight.controller</groupId>
719                         <artifactId>switchmanager</artifactId>
720                 </dependency>
721                 <dependency>
722                         <groupId>org.opendaylight.controller</groupId>
723                         <artifactId>switchmanager.implementation</artifactId>
724                         <version>0.4.1-SNAPSHOT</version>
725                 </dependency>
726                 <dependency>
727                         <groupId>org.opendaylight.controller</groupId>
728                         <artifactId>forwardingrulesmanager</artifactId>
729                         <version>0.5.0-SNAPSHOT</version>
730                 </dependency>
731                 <dependency>
732                         <groupId>org.opendaylight.controller</groupId>
733                         <artifactId>hosttracker</artifactId>
734                         <version>${hosttracker.version}</version>
735                 </dependency>
736                 <dependency>
737                         <groupId>org.opendaylight.controller</groupId>
738                         <artifactId>topologymanager</artifactId>
739                         <version>0.4.1-SNAPSHOT</version>
740                 </dependency>
741                 <dependency>
742                         <groupId>org.opendaylight.controller</groupId>
743                         <artifactId>forwardingrulesmanager.implementation</artifactId>
744                         <version>0.4.1-SNAPSHOT</version>
745                 </dependency>
746                 <dependency>
747                         <groupId>org.opendaylight.controller</groupId>
748                         <artifactId>statisticsmanager</artifactId>
749                         <version>0.5.0-SNAPSHOT</version>
750                 </dependency>
751                 <dependency>
752                         <groupId>org.opendaylight.controller</groupId>
753                         <artifactId>statisticsmanager.implementation</artifactId>
754                         <version>0.4.1-SNAPSHOT</version>
755                 </dependency>
756                 <dependency>
757                         <groupId>org.opendaylight.controller</groupId>
758                         <artifactId>connectionmanager</artifactId>
759                         <version>0.1.1-SNAPSHOT</version>
760                 </dependency>
761                 <dependency>
762                         <groupId>org.opendaylight.controller</groupId>
763                         <artifactId>connectionmanager.implementation</artifactId>
764                         <version>0.1.1-SNAPSHOT</version>
765                 </dependency>
766                 <dependency>
767                         <groupId>org.opendaylight.controller</groupId>
768                         <artifactId>configuration</artifactId>
769                         <version>0.4.1-SNAPSHOT</version>
770                 </dependency>
771                 <dependency>
772                         <groupId>org.opendaylight.controller</groupId>
773                         <artifactId>configuration.implementation</artifactId>
774                         <version>0.4.1-SNAPSHOT</version>
775                 </dependency>
776                 <dependency>
777                         <groupId>org.opendaylight.controller</groupId>
778                         <artifactId>usermanager</artifactId>
779                         <version>0.4.1-SNAPSHOT</version>
780                 </dependency>
781                 <dependency>
782                         <groupId>org.opendaylight.controller</groupId>
783                         <artifactId>usermanager.implementation</artifactId>
784                         <version>0.4.1-SNAPSHOT</version>
785                 </dependency>
786                 <dependency>
787                         <groupId>org.opendaylight.controller</groupId>
788                         <artifactId>sal.connection</artifactId>
789                         <version>0.1.1-SNAPSHOT</version>
790                 </dependency>
791                 <dependency>
792                         <groupId>org.opendaylight.controller</groupId>
793                         <artifactId>sal.connection.implementation</artifactId>
794                         <version>0.1.1-SNAPSHOT</version>
795                 </dependency>
796                 <dependency>
797                         <groupId>org.opendaylight.controller.thirdparty</groupId>
798                         <artifactId>org.apache.catalina.filters.CorsFilter</artifactId>
799                 </dependency>
800                 <dependency>
801                         <groupId>org.opendaylight.controller.thirdparty</groupId>
802                         <artifactId>net.sf.jung2</artifactId>
803                 </dependency>
804                 <dependency>
805                         <groupId>org.opendaylight.controller</groupId>
806                         <artifactId>logging.bridge</artifactId>
807                         <version>0.4.1-SNAPSHOT</version>
808                 </dependency>
809                 <!-- Gemini Web -->
810                 <dependency>
811                         <groupId>geminiweb</groupId>
812                         <artifactId>org.eclipse.gemini.web.core</artifactId>
813                         <version>${geminiweb.version}</version>
814                 </dependency>
815                 <dependency>
816                         <groupId>geminiweb</groupId>
817                         <artifactId>org.eclipse.gemini.web.extender</artifactId>
818                         <version>${geminiweb.version}</version>
819                 </dependency>
820                 <dependency>
821                         <groupId>geminiweb</groupId>
822                         <artifactId>org.eclipse.gemini.web.tomcat</artifactId>
823                         <version>${geminiweb.version}</version>
824                 </dependency>
825                 <dependency>
826                         <groupId>geminiweb</groupId>
827                         <artifactId>org.eclipse.virgo.kernel.equinox.extensions</artifactId>
828                         <version>${virgo.version}</version>
829                 </dependency>
830                 <dependency>
831                         <groupId>geminiweb</groupId>
832                         <artifactId>org.eclipse.virgo.util.common</artifactId>
833                         <version>${virgo.version}</version>
834                 </dependency>
835                 <dependency>
836                         <groupId>geminiweb</groupId>
837                         <artifactId>org.eclipse.virgo.util.io</artifactId>
838                         <version>${virgo.version}</version>
839                 </dependency>
840                 <dependency>
841                         <groupId>geminiweb</groupId>
842                         <artifactId>org.eclipse.virgo.util.math</artifactId>
843                         <version>${virgo.version}</version>
844                 </dependency>
845                 <dependency>
846                         <groupId>geminiweb</groupId>
847                         <artifactId>org.eclipse.virgo.util.osgi</artifactId>
848                         <version>${virgo.version}</version>
849                 </dependency>
850                 <dependency>
851                         <groupId>geminiweb</groupId>
852                         <artifactId>org.eclipse.virgo.util.osgi.manifest</artifactId>
853                         <version>${virgo.version}</version>
854                 </dependency>
855                 <dependency>
856                         <groupId>geminiweb</groupId>
857                         <artifactId>org.eclipse.virgo.util.parser.manifest</artifactId>
858                         <version>${virgo.version}</version>
859                 </dependency>
860                 <dependency>
861                         <groupId>org.opendaylight.controller</groupId>
862                         <artifactId>security</artifactId>
863                         <version>0.4.1-SNAPSHOT</version>
864                 </dependency>
865                 <dependency>
866                         <groupId>org.opendaylight.controller</groupId>
867                         <artifactId>sal-connector-api</artifactId>
868                         <version>1.0-SNAPSHOT</version>
869                 </dependency>
870                 <dependency>
871                         <groupId>org.opendaylight.yangtools.thirdparty</groupId>
872                         <artifactId>antlr4-runtime-osgi-nohead</artifactId>
873                         <version>4.0</version>
874                 </dependency>
875                 <dependency>
876                         <groupId>org.opendaylight.yangtools</groupId>
877                         <artifactId>yang-binding</artifactId>
878                 </dependency>
879                 <dependency>
880                         <groupId>org.opendaylight.yangtools</groupId>
881                         <artifactId>yang-common</artifactId>
882                 </dependency>
883                 <dependency>
884                         <groupId>org.opendaylight.yangtools.model</groupId>
885                         <artifactId>ietf-inet-types</artifactId>
886                 </dependency>
887                 <dependency>
888                         <groupId>org.opendaylight.yangtools.model</groupId>
889                         <artifactId>ietf-yang-types</artifactId>
890                 </dependency>
891                 <dependency>
892                         <groupId>org.opendaylight.controller</groupId>
893                         <artifactId>config-api</artifactId>
894                         <version>0.2.3-SNAPSHOT</version>
895                 </dependency>
896
897                 <dependency>
898                         <groupId>org.opendaylight.yangtools</groupId>
899                         <artifactId>mockito-configuration</artifactId>
900                 </dependency>
901                 <dependency>
902                         <groupId>xml-apis</groupId>
903                         <artifactId>xml-apis</artifactId>
904                         <version>1.4.01</version>
905                 </dependency>
906         </dependencies>
907
908         <profiles>
909                 <profile>
910                         <id>default</id>
911                         <activation>
912                                 <activeByDefault>true</activeByDefault>
913                         </activation>
914                         <properties>
915                                 <skipIntegrationTest>false</skipIntegrationTest>
916                         </properties>
917                 </profile>
918                 <profile>
919                         <id>skipTestCompileAndRun</id>
920                         <activation>
921                                 <property>
922                                         <name>maven.test.skip</name>
923                                         <value>true</value>
924                                 </property>
925                         </activation>
926                         <properties>
927                                 <skipIntegrationTest>true</skipIntegrationTest>
928                         </properties>
929                 </profile>
930                 <profile>
931                         <id>skipTestRun</id>
932                         <activation>
933                                 <property>
934                                         <name>skipTests</name>
935                                 </property>
936                         </activation>
937                         <properties>
938                                 <skipIntegrationTest>true</skipIntegrationTest>
939                         </properties>
940                 </profile>
941         </profiles>
942 </project>