Merge remote branch 'origin/release-1.0.X' into mer
[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.opendaylight.controller</groupId>
224                         <artifactId>netconf-util</artifactId>
225                         <version>${netconf.version}</version>
226                 </dependency>
227                 <dependency>
228                         <groupId>org.osgi</groupId>
229                         <artifactId>org.osgi.core</artifactId>
230                         <version>${osgi.core.version}</version>
231                         <scope>provided</scope>
232                 </dependency>
233                 <dependency>
234                         <groupId>org.opendaylight.controller</groupId>
235                         <artifactId>containermanager.it.implementation</artifactId>
236                         <version>0.5.1-SNAPSHOT</version>
237                 </dependency>
238                 <dependency>
239                         <groupId>org.opendaylight.controller</groupId>
240                         <artifactId>protocol_plugins.stub</artifactId>
241                         <version>0.4.1-SNAPSHOT</version>
242                 </dependency>
243
244                 <dependency>
245                         <groupId>org.opendaylight.controller</groupId>
246                         <artifactId>protocol-framework</artifactId>
247                 </dependency>
248                 <dependency>
249                         <groupId>org.opendaylight.controller</groupId>
250                         <artifactId>sal</artifactId>
251                         <version>${sal.version}</version>
252                 </dependency>
253                 <dependency>
254                         <groupId>org.opendaylight.controller</groupId>
255                         <artifactId>clustering.services</artifactId>
256                         <version>0.5.0-SNAPSHOT</version>
257                 </dependency>
258                 <dependency>
259                         <groupId>org.opendaylight.controller</groupId>
260                         <artifactId>clustering.stub</artifactId>
261                         <version>0.4.1-SNAPSHOT</version>
262                 </dependency>
263
264                 <dependency>
265                         <groupId>org.codehaus.enunciate</groupId>
266                         <artifactId>enunciate-core-annotations</artifactId>
267                         <version>${enunciate.version}</version>
268                 </dependency>
269                 <dependency>
270                         <groupId>org.slf4j</groupId>
271                         <artifactId>jcl-over-slf4j</artifactId>
272                         <version>${slf4j.version}</version>
273                 </dependency>
274                 <dependency>
275                         <groupId>org.slf4j</groupId>
276                         <artifactId>slf4j-api</artifactId>
277                         <version>${slf4j.version}</version>
278                 </dependency>
279                 <dependency>
280                         <groupId>org.slf4j</groupId>
281                         <artifactId>log4j-over-slf4j</artifactId>
282                         <version>${slf4j.version}</version>
283                 </dependency>
284                 <dependency>
285                         <groupId>ch.qos.logback</groupId>
286                         <artifactId>logback-core</artifactId>
287                         <version>${logback.version}</version>
288                 </dependency>
289                 <dependency>
290                         <groupId>ch.qos.logback</groupId>
291                         <artifactId>logback-classic</artifactId>
292                         <version>${logback.version}</version>
293                 </dependency>
294                 <dependency>
295                         <groupId>commons-io</groupId>
296                         <artifactId>commons-io</artifactId>
297                 </dependency>
298                 <dependency>
299                         <groupId>commons-fileupload</groupId>
300                         <artifactId>commons-fileupload</artifactId>
301                 </dependency>
302                 <dependency>
303                         <groupId>commons-codec</groupId>
304                         <artifactId>commons-codec</artifactId>
305                 </dependency>
306                 <dependency>
307                         <groupId>equinoxSDK381</groupId>
308                         <artifactId>javax.servlet</artifactId>
309                 </dependency>
310                 <dependency>
311                         <groupId>equinoxSDK381</groupId>
312                         <artifactId>javax.servlet.jsp</artifactId>
313                 </dependency>
314                 <dependency>
315                         <groupId>equinoxSDK381</groupId>
316                         <artifactId>org.eclipse.equinox.ds</artifactId>
317                 </dependency>
318                 <dependency>
319                         <groupId>equinoxSDK381</groupId>
320                         <artifactId>org.eclipse.equinox.util</artifactId>
321                 </dependency>
322                 <dependency>
323                         <groupId>equinoxSDK381</groupId>
324                         <artifactId>org.eclipse.osgi</artifactId>
325                 </dependency>
326                 <dependency>
327                         <groupId>equinoxSDK381</groupId>
328                         <artifactId>org.apache.felix.gogo.command</artifactId>
329                 </dependency>
330                 <dependency>
331                         <groupId>equinoxSDK381</groupId>
332                         <artifactId>org.apache.felix.gogo.runtime</artifactId>
333                 </dependency>
334                 <dependency>
335                         <groupId>equinoxSDK381</groupId>
336                         <artifactId>org.apache.felix.gogo.shell</artifactId>
337                 </dependency>
338                 <dependency>
339                         <groupId>equinoxSDK381</groupId>
340                         <artifactId>org.eclipse.equinox.cm</artifactId>
341                 </dependency>
342                 <dependency>
343                         <groupId>equinoxSDK381</groupId>
344                         <artifactId>org.eclipse.equinox.console</artifactId>
345                 </dependency>
346                 <dependency>
347                         <groupId>equinoxSDK381</groupId>
348                         <artifactId>org.eclipse.equinox.launcher</artifactId>
349                 </dependency>
350                 <dependency>
351                         <groupId>org.apache.felix</groupId>
352                         <artifactId>org.apache.felix.dependencymanager</artifactId>
353                 </dependency>
354                 <dependency>
355                         <groupId>org.apache.felix</groupId>
356                         <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
357                 </dependency>
358                 <dependency>
359                         <groupId>com.google.code.gson</groupId>
360                         <artifactId>gson</artifactId>
361                         <scope>compile</scope>
362                 </dependency>
363                 <dependency>
364                         <groupId>org.jboss.spec.javax.transaction</groupId>
365                         <artifactId>jboss-transaction-api_1.1_spec</artifactId>
366                 </dependency>
367                 <dependency>
368                         <groupId>org.apache.felix</groupId>
369                         <artifactId>org.apache.felix.fileinstall</artifactId>
370                 </dependency>
371                 <dependency>
372                         <groupId>org.apache.commons</groupId>
373                         <artifactId>commons-lang3</artifactId>
374                         <version>${commons.lang.version}</version>
375                 </dependency>
376                 <dependency>
377                         <groupId>virgomirror</groupId>
378                         <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
379                 </dependency>
380                 <dependency>
381                         <groupId>eclipselink</groupId>
382                         <artifactId>javax.persistence</artifactId>
383                 </dependency>
384                 <dependency>
385                         <groupId>eclipselink</groupId>
386                         <artifactId>javax.resource</artifactId>
387                 </dependency>
388                 <dependency>
389                         <groupId>orbit</groupId>
390                         <artifactId>javax.activation</artifactId>
391                 </dependency>
392                 <dependency>
393                         <groupId>orbit</groupId>
394                         <artifactId>javax.annotation</artifactId>
395                 </dependency>
396                 <dependency>
397                         <groupId>orbit</groupId>
398                         <artifactId>javax.ejb</artifactId>
399                 </dependency>
400                 <dependency>
401                         <groupId>orbit</groupId>
402                         <artifactId>javax.el</artifactId>
403                 </dependency>
404                 <dependency>
405                         <groupId>orbit</groupId>
406                         <artifactId>javax.mail.glassfish</artifactId>
407                 </dependency>
408                 <dependency>
409                         <groupId>orbit</groupId>
410                         <artifactId>javax.xml.rpc</artifactId>
411                 </dependency>
412                 <dependency>
413                         <groupId>orbit</groupId>
414                         <artifactId>org.apache.catalina</artifactId>
415                 </dependency>
416                 <dependency>
417                         <groupId>orbit</groupId>
418                         <artifactId>org.apache.catalina.ha</artifactId>
419                 </dependency>
420                 <dependency>
421                         <groupId>orbit</groupId>
422                         <artifactId>org.apache.catalina.tribes</artifactId>
423                 </dependency>
424                 <dependency>
425                         <groupId>orbit</groupId>
426                         <artifactId>org.apache.coyote</artifactId>
427                 </dependency>
428                 <dependency>
429                         <groupId>orbit</groupId>
430                         <artifactId>org.apache.el</artifactId>
431                 </dependency>
432                 <dependency>
433                         <groupId>orbit</groupId>
434                         <artifactId>org.apache.jasper</artifactId>
435                 </dependency>
436                 <dependency>
437                         <groupId>orbit</groupId>
438                         <artifactId>org.apache.juli.extras</artifactId>
439                 </dependency>
440                 <dependency>
441                         <groupId>orbit</groupId>
442                         <artifactId>org.apache.tomcat.api</artifactId>
443                 </dependency>
444                 <dependency>
445                         <groupId>orbit</groupId>
446                         <artifactId>org.apache.tomcat.util</artifactId>
447                 </dependency>
448                 <dependency>
449                         <groupId>orbit</groupId>
450                         <artifactId>javax.servlet.jsp.jstl</artifactId>
451                 </dependency>
452                 <dependency>
453                         <groupId>orbit</groupId>
454                         <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
455                 </dependency>
456                 <!-- Add Pax Exam -->
457                 <dependency>
458                         <exclusions>
459                                 <exclusion>  <!-- declare the exclusion here -->
460                                         <groupId>org.ops4j.pax.exam</groupId>
461                                         <artifactId>pax-exam-container-native</artifactId>
462                                 </exclusion>
463                         </exclusions>
464                         <groupId>org.ops4j.pax.exam</groupId>
465                         <artifactId>pax-exam-container-forked</artifactId>
466                         <scope>test</scope>
467                         <version>${exam.version}</version>
468                 </dependency>
469                 <dependency>
470                         <groupId>org.ops4j.pax.exam</groupId>
471                         <artifactId>pax-exam-junit4</artifactId>
472                         <scope>test</scope>
473                 </dependency>
474                 <dependency>
475                         <groupId>org.ops4j.pax.exam</groupId>
476                         <artifactId>pax-exam</artifactId>
477                         <version>${exam.version}</version>
478                         <!-- Compile scope here is intentional, it is used in TestHelper class 
479                                 which could be downloaded via nexus and reused in other integration tests. -->
480                         <scope>compile</scope>
481                 </dependency>
482                 <dependency>
483                         <groupId>org.ops4j.pax.exam</groupId>
484                         <artifactId>pax-exam-link-mvn</artifactId>
485                         <scope>test</scope>
486                 </dependency>
487                 <dependency>
488                         <groupId>org.ow2.asm</groupId>
489                         <artifactId>asm-all</artifactId>
490                 </dependency>
491                 <dependency>
492                         <groupId>org.springframework</groupId>
493                         <artifactId>org.springframework.asm</artifactId>
494                         <version>${spring.version}</version>
495                 </dependency>
496                 <dependency>
497                         <groupId>org.springframework</groupId>
498                         <artifactId>org.springframework.aop</artifactId>
499                         <version>${spring.version}</version>
500                 </dependency>
501                 <dependency>
502                         <groupId>org.springframework</groupId>
503                         <artifactId>org.springframework.context</artifactId>
504                         <version>${spring.version}</version>
505                 </dependency>
506                 <dependency>
507                         <groupId>org.springframework</groupId>
508                         <artifactId>org.springframework.context.support</artifactId>
509                         <version>${spring.version}</version>
510                 </dependency>
511                 <dependency>
512                         <groupId>org.springframework</groupId>
513                         <artifactId>org.springframework.core</artifactId>
514                         <version>${spring.version}</version>
515                 </dependency>
516                 <dependency>
517                         <groupId>org.springframework</groupId>
518                         <artifactId>org.springframework.beans</artifactId>
519                         <version>${spring.version}</version>
520                 </dependency>
521                 <dependency>
522                         <groupId>org.springframework</groupId>
523                         <artifactId>org.springframework.expression</artifactId>
524                         <version>${spring.version}</version>
525                 </dependency>
526                 <dependency>
527                         <groupId>org.springframework</groupId>
528                         <artifactId>org.springframework.web</artifactId>
529                         <version>${spring.version}</version>
530                 </dependency>
531                 <dependency>
532                         <groupId>org.aopalliance</groupId>
533                         <artifactId>com.springsource.org.aopalliance</artifactId>
534                 </dependency>
535                 <dependency>
536                         <groupId>org.springframework</groupId>
537                         <artifactId>org.springframework.web.servlet</artifactId>
538                         <version>${spring.version}</version>
539                 </dependency>
540                 <!-- Spring security -->
541                 <dependency>
542                         <groupId>org.springframework.security</groupId>
543                         <artifactId>spring-security-config</artifactId>
544                         <version>${spring-security.version}</version>
545                 </dependency>
546                 <dependency>
547                         <groupId>org.springframework.security</groupId>
548                         <artifactId>spring-security-core</artifactId>
549                         <version>${spring-security.version}</version>
550                 </dependency>
551                 <dependency>
552                         <groupId>org.springframework.security</groupId>
553                         <artifactId>spring-security-web</artifactId>
554                         <version>${spring-security.version}</version>
555                 </dependency>
556                 <dependency>
557                         <groupId>org.springframework.security</groupId>
558                         <artifactId>spring-security-taglibs</artifactId>
559                         <version>${spring-security.version}</version>
560                 </dependency>
561                 <dependency>
562                         <groupId>org.springframework</groupId>
563                         <artifactId>org.springframework.transaction</artifactId>
564                         <version>${spring-security.version}</version>
565                 </dependency>
566                 <!-- Visual VM hook -->
567                 <dependency>
568                         <groupId>org.ow2.chameleon.management</groupId>
569                         <artifactId>chameleon-mbeans</artifactId>
570                 </dependency>
571                 <!-- Jersey for JAXRS -->
572                 <dependency>
573                         <groupId>com.sun.jersey</groupId>
574                         <artifactId>jersey-core</artifactId>
575                         <version>${jersey.version}</version>
576                 </dependency>
577                 <dependency>
578                         <groupId>com.sun.jersey</groupId>
579                         <artifactId>jersey-json</artifactId>
580                         <version>${jersey.version}</version>
581                 </dependency>
582                 <dependency>
583                         <groupId>com.sun.jersey</groupId>
584                         <artifactId>jersey-server</artifactId>
585                         <version>${jersey.version}</version>
586                 </dependency>
587                 <dependency>
588                         <groupId>com.sun.jersey</groupId>
589                         <artifactId>jersey-client</artifactId>
590                         <version>${jersey.version}</version>
591                 </dependency>
592                 <dependency>
593         <groupId>com.sun.jersey</groupId>
594         <artifactId>jersey-json</artifactId>
595         <version>${jersey.version}</version>
596       </dependency>
597                 <dependency>
598                         <groupId>org.opendaylight.yangtools.thirdparty</groupId>
599                         <artifactId>xtend-lib-osgi</artifactId>
600                         <version>2.4.3</version>
601                 </dependency>
602                 <dependency>
603                         <groupId>org.opendaylight.yangtools.model</groupId>
604                         <artifactId>opendaylight-l2-types</artifactId>
605                         <version>${opendaylight-l2-types.version}</version>
606                 </dependency>
607                 <dependency>
608                         <groupId>org.opendaylight.yangtools.model</groupId>
609                         <artifactId>yang-ext</artifactId>
610                         <version>${yang-ext.version}</version>
611                 </dependency>
612                 <dependency>
613                         <groupId>org.opendaylight.controller</groupId>
614                         <artifactId>sal-binding-broker-impl</artifactId>
615                         <version>1.0-SNAPSHOT</version>
616                 </dependency>
617                 <dependency>
618                         <groupId>org.opendaylight.controller</groupId>
619                         <artifactId>config-netconf-connector</artifactId>
620                         <version>${netconf.version}</version>
621                         <scope>test</scope>
622                 </dependency>
623                 <dependency>
624                         <groupId>org.opendaylight.controller</groupId>
625                         <artifactId>config-persister-file-xml-adapter</artifactId>
626                         <version>${config.version}</version>
627                 </dependency>
628                 <dependency>
629                         <groupId>org.opendaylight.controller.model</groupId>
630                         <artifactId>model-inventory</artifactId>
631                         <version>${mdsal.version}</version>
632                 </dependency>
633                 <dependency>
634                         <groupId>org.javassist</groupId>
635                         <artifactId>javassist</artifactId>
636                 </dependency>
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>