Add <scm> section to all pom.xml files
[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         </properties>
147         <dependencies>
148
149                 <dependency>
150                         <groupId>org.opendaylight.controller</groupId>
151                         <artifactId>sal-binding-api</artifactId>
152                         <version>1.0-SNAPSHOT</version>
153                 </dependency>
154                 <dependency>
155                         <groupId>org.opendaylight.controller</groupId>
156                         <artifactId>sal-binding-it</artifactId>
157                         <version>1.0-SNAPSHOT</version>
158                 </dependency>
159                 <dependency>
160                         <groupId>org.opendaylight.controller</groupId>
161                         <artifactId>sal-common-api</artifactId>
162                         <version>1.0-SNAPSHOT</version>
163                 </dependency>
164
165                 <dependency>
166                         <groupId>org.opendaylight.controller</groupId>
167                         <artifactId>sal-common-util</artifactId>
168                         <version>1.0-SNAPSHOT</version>
169                 </dependency>
170                 <dependency>
171                         <groupId>org.opendaylight.controller</groupId>
172                         <artifactId>commons.integrationtest</artifactId>
173                         <type>pom</type>
174                         <version>0.5.1-SNAPSHOT</version>
175                 </dependency>
176                 <dependency>
177                         <groupId>org.opendaylight.lispflowmapping</groupId>
178                         <artifactId>mappingservice.yangmodel</artifactId>
179                         <version>${lispflowmapping.version}</version>
180                 </dependency>
181                 <dependency>
182                         <groupId>org.opendaylight.lispflowmapping</groupId>
183                         <artifactId>mappingservice.config</artifactId>
184                         <version>${lispflowmapping.version}</version>
185                 </dependency>
186                 <dependency>
187                         <groupId>org.opendaylight.lispflowmapping</groupId>
188                         <artifactId>mappingservice.api</artifactId>
189                         <version>${lispflowmapping.version}</version>
190                 </dependency>
191                 <dependency>
192                         <groupId>org.opendaylight.lispflowmapping</groupId>
193                         <artifactId>mappingservice.implementation</artifactId>
194                         <version>${lispflowmapping.version}</version>
195                 </dependency>
196                 <dependency>
197                         <groupId>org.opendaylight.lispflowmapping</groupId>
198                         <artifactId>mappingservice.southbound</artifactId>
199                         <version>${lispflowmapping.version}</version>
200                 </dependency>
201                 <dependency>
202                         <groupId>org.opendaylight.lispflowmapping</groupId>
203                         <artifactId>mappingservice.northbound</artifactId>
204                         <version>${lispflowmapping.version}</version>
205                 </dependency>
206                 <dependency>
207                         <groupId>org.opendaylight.controller</groupId>
208                         <artifactId>containermanager</artifactId>
209                         <version>0.5.0-SNAPSHOT</version>
210                 </dependency>
211                 <dependency>
212                         <groupId>org.opendaylight.controller</groupId>
213                         <artifactId>netconf-impl</artifactId>
214                         <version>${netconf.version}</version>
215                 </dependency>
216                 <dependency>
217                         <groupId>org.opendaylight.controller</groupId>
218                         <artifactId>containermanager.it.implementation</artifactId>
219                         <version>0.5.0-SNAPSHOT</version>
220                 </dependency>
221                 <dependency>
222                         <groupId>org.opendaylight.controller</groupId>
223                         <artifactId>protocol_plugins.stub</artifactId>
224                         <version>0.4.1-SNAPSHOT</version>
225                 </dependency>
226
227                 <dependency>
228                         <groupId>org.opendaylight.controller</groupId>
229                         <artifactId>sal</artifactId>
230                         <version>${sal.version}</version>
231                 </dependency>
232                 <dependency>
233                         <groupId>org.opendaylight.controller</groupId>
234                         <artifactId>clustering.services</artifactId>
235                         <version>0.4.1-SNAPSHOT</version>
236                 </dependency>
237                 <dependency>
238                         <groupId>org.opendaylight.controller</groupId>
239                         <artifactId>clustering.stub</artifactId>
240                         <version>0.4.0-SNAPSHOT</version>
241                 </dependency>
242
243                 <dependency>
244                         <groupId>org.codehaus.enunciate</groupId>
245                         <artifactId>enunciate-core-annotations</artifactId>
246                         <version>${enunciate.version}</version>
247                 </dependency>
248                 <dependency>
249                         <groupId>org.slf4j</groupId>
250                         <artifactId>jcl-over-slf4j</artifactId>
251                         <version>${slf4j.version}</version>
252                 </dependency>
253                 <dependency>
254                         <groupId>org.slf4j</groupId>
255                         <artifactId>slf4j-api</artifactId>
256                         <version>${slf4j.version}</version>
257                 </dependency>
258                 <dependency>
259                         <groupId>org.slf4j</groupId>
260                         <artifactId>log4j-over-slf4j</artifactId>
261                         <version>${slf4j.version}</version>
262                 </dependency>
263                 <dependency>
264                         <groupId>ch.qos.logback</groupId>
265                         <artifactId>logback-core</artifactId>
266                         <version>${logback.version}</version>
267                 </dependency>
268                 <dependency>
269                         <groupId>ch.qos.logback</groupId>
270                         <artifactId>logback-classic</artifactId>
271                         <version>${logback.version}</version>
272                 </dependency>
273                 <dependency>
274                         <groupId>commons-io</groupId>
275                         <artifactId>commons-io</artifactId>
276                 </dependency>
277                 <dependency>
278                         <groupId>commons-fileupload</groupId>
279                         <artifactId>commons-fileupload</artifactId>
280                         <version>1.2.2</version>
281                 </dependency>
282                 <dependency>
283                         <groupId>commons-codec</groupId>
284                         <artifactId>commons-codec</artifactId>
285                 </dependency>
286                 <dependency>
287                         <groupId>equinoxSDK381</groupId>
288                         <artifactId>javax.servlet</artifactId>
289                         <version>3.0.0.v201112011016</version>
290                 </dependency>
291                 <dependency>
292                         <groupId>equinoxSDK381</groupId>
293                         <artifactId>javax.servlet.jsp</artifactId>
294                         <version>2.2.0.v201112011158</version>
295                 </dependency>
296                 <dependency>
297                         <groupId>equinoxSDK381</groupId>
298                         <artifactId>org.eclipse.equinox.ds</artifactId>
299                         <version>1.4.0.v20120522-1841</version>
300                 </dependency>
301                 <dependency>
302                         <groupId>equinoxSDK381</groupId>
303                         <artifactId>org.eclipse.equinox.util</artifactId>
304                         <version>1.0.400.v20120522-2049</version>
305                 </dependency>
306                 <dependency>
307                         <groupId>equinoxSDK381</groupId>
308                         <artifactId>org.eclipse.osgi</artifactId>
309                         <version>3.8.1.v20120830-144521</version>
310                 </dependency>
311                 <dependency>
312                         <groupId>equinoxSDK381</groupId>
313                         <artifactId>org.apache.felix.gogo.command</artifactId>
314                         <version>0.8.0.v201108120515</version>
315                 </dependency>
316                 <dependency>
317                         <groupId>equinoxSDK381</groupId>
318                         <artifactId>org.apache.felix.gogo.runtime</artifactId>
319                         <version>0.8.0.v201108120515</version>
320                 </dependency>
321                 <dependency>
322                         <groupId>equinoxSDK381</groupId>
323                         <artifactId>org.apache.felix.gogo.shell</artifactId>
324                         <version>0.8.0.v201110170705</version>
325                 </dependency>
326                 <dependency>
327                         <groupId>equinoxSDK381</groupId>
328                         <artifactId>org.eclipse.equinox.cm</artifactId>
329                         <version>1.0.400.v20120522-1841</version>
330                 </dependency>
331                 <dependency>
332                         <groupId>equinoxSDK381</groupId>
333                         <artifactId>org.eclipse.equinox.console</artifactId>
334                         <version>1.0.0.v20120522-1841</version>
335                 </dependency>
336                 <dependency>
337                         <groupId>equinoxSDK381</groupId>
338                         <artifactId>org.eclipse.equinox.launcher</artifactId>
339                         <version>1.3.0.v20120522-1813</version>
340                 </dependency>
341                 <dependency>
342                         <groupId>org.apache.felix</groupId>
343                         <artifactId>org.apache.felix.dependencymanager</artifactId>
344                         <version>3.1.0</version>
345                 </dependency>
346                 <dependency>
347                         <groupId>org.apache.felix</groupId>
348                         <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
349                         <version>3.0.1</version>
350                 </dependency>
351                 <dependency>
352                         <groupId>com.google.code.gson</groupId>
353                         <artifactId>gson</artifactId>
354                         <version>2.1</version>
355                         <scope>compile</scope>
356                 </dependency>
357                 <dependency>
358                         <groupId>org.jboss.spec.javax.transaction</groupId>
359                         <artifactId>jboss-transaction-api_1.1_spec</artifactId>
360                         <version>1.0.1.Final</version>
361                 </dependency>
362                 <dependency>
363                         <groupId>org.apache.felix</groupId>
364                         <artifactId>org.apache.felix.fileinstall</artifactId>
365                         <version>3.1.6</version>
366                 </dependency>
367                 <dependency>
368                         <groupId>org.apache.commons</groupId>
369                         <artifactId>commons-lang3</artifactId>
370                         <version>${commons.lang.version}</version>
371                 </dependency>
372                 <dependency>
373                         <groupId>virgomirror</groupId>
374                         <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
375                         <version>3.8.0.I20120518-2145</version>
376                 </dependency>
377                 <dependency>
378                         <groupId>eclipselink</groupId>
379                         <artifactId>javax.persistence</artifactId>
380                         <version>2.0.4.v201112161009</version>
381                 </dependency>
382                 <dependency>
383                         <groupId>eclipselink</groupId>
384                         <artifactId>javax.resource</artifactId>
385                         <version>1.5.0.v200906010428</version>
386                 </dependency>
387                 <dependency>
388                         <groupId>orbit</groupId>
389                         <artifactId>javax.activation</artifactId>
390                         <version>1.1.0.v201211130549</version>
391                 </dependency>
392                 <dependency>
393                         <groupId>orbit</groupId>
394                         <artifactId>javax.annotation</artifactId>
395                         <version>1.1.0.v201209060031</version>
396                 </dependency>
397                 <dependency>
398                         <groupId>orbit</groupId>
399                         <artifactId>javax.ejb</artifactId>
400                         <version>3.1.1.v201204261316</version>
401                 </dependency>
402                 <dependency>
403                         <groupId>orbit</groupId>
404                         <artifactId>javax.el</artifactId>
405                         <version>2.2.0.v201108011116</version>
406                 </dependency>
407                 <dependency>
408                         <groupId>orbit</groupId>
409                         <artifactId>javax.mail.glassfish</artifactId>
410                         <version>1.4.1.v201108011116</version>
411                 </dependency>
412                 <dependency>
413                         <groupId>orbit</groupId>
414                         <artifactId>javax.xml.rpc</artifactId>
415                         <version>1.1.0.v201005080400</version>
416                 </dependency>
417                 <dependency>
418                         <groupId>orbit</groupId>
419                         <artifactId>org.apache.catalina</artifactId>
420                         <version>7.0.32.v201211201336</version>
421                 </dependency>
422                 <dependency>
423                         <groupId>orbit</groupId>
424                         <artifactId>org.apache.catalina.ha</artifactId>
425                         <version>7.0.32.v201211201952</version>
426                 </dependency>
427                 <dependency>
428                         <groupId>orbit</groupId>
429                         <artifactId>org.apache.catalina.tribes</artifactId>
430                         <version>7.0.32.v201211201952</version>
431                 </dependency>
432                 <dependency>
433                         <groupId>orbit</groupId>
434                         <artifactId>org.apache.coyote</artifactId>
435                         <version>7.0.32.v201211201952</version>
436                 </dependency>
437                 <dependency>
438                         <groupId>orbit</groupId>
439                         <artifactId>org.apache.el</artifactId>
440                         <version>7.0.32.v201211081135</version>
441                 </dependency>
442                 <dependency>
443                         <groupId>orbit</groupId>
444                         <artifactId>org.apache.jasper</artifactId>
445                         <version>7.0.32.v201211201952</version>
446                 </dependency>
447                 <dependency>
448                         <groupId>orbit</groupId>
449                         <artifactId>org.apache.juli.extras</artifactId>
450                         <version>7.0.32.v201211081135</version>
451                 </dependency>
452                 <dependency>
453                         <groupId>orbit</groupId>
454                         <artifactId>org.apache.tomcat.api</artifactId>
455                         <version>7.0.32.v201211081135</version>
456                 </dependency>
457                 <dependency>
458                         <groupId>orbit</groupId>
459                         <artifactId>org.apache.tomcat.util</artifactId>
460                         <version>7.0.32.v201211201952</version>
461                 </dependency>
462                 <dependency>
463                         <groupId>orbit</groupId>
464                         <artifactId>javax.servlet.jsp.jstl</artifactId>
465                         <version>1.2.0.v201105211821</version>
466                 </dependency>
467                 <dependency>
468                         <groupId>orbit</groupId>
469                         <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
470                         <version>1.2.0.v201210211230</version>
471                 </dependency>
472                 <!-- Add Pax Exam -->
473                 <dependency>
474             <exclusions>
475                 <exclusion>  <!-- declare the exclusion here -->
476                     <groupId>org.ops4j.pax.exam</groupId>
477                     <artifactId>pax-exam-container-native</artifactId>
478                 </exclusion>
479             </exclusions>
480                         <groupId>org.ops4j.pax.exam</groupId>
481                         <artifactId>pax-exam-container-forked</artifactId>
482                         <scope>test</scope>
483             <version>${exam.version}</version>
484                 </dependency>
485                 <dependency>
486                         <groupId>org.ops4j.pax.exam</groupId>
487                         <artifactId>pax-exam-junit4</artifactId>
488                         <scope>test</scope>
489                 </dependency>
490                 <dependency>
491                         <groupId>org.ops4j.pax.exam</groupId>
492                         <artifactId>pax-exam</artifactId>
493                         <version>${exam.version}</version>
494                         <!-- Compile scope here is intentional, it is used in TestHelper class 
495                                 which could be downloaded via nexus and reused in other integration tests. -->
496                         <scope>compile</scope>
497                 </dependency>
498                 <dependency>
499                         <groupId>org.ops4j.pax.exam</groupId>
500                         <artifactId>pax-exam-link-mvn</artifactId>
501                         <scope>test</scope>
502                 </dependency>
503                 <dependency>
504                         <groupId>org.ow2.asm</groupId>
505                         <artifactId>asm-all</artifactId>
506                         <version>4.1</version>
507                 </dependency>
508                 <dependency>
509                         <groupId>org.springframework</groupId>
510                         <artifactId>org.springframework.asm</artifactId>
511                         <version>${spring.version}</version>
512                 </dependency>
513                 <dependency>
514                         <groupId>org.springframework</groupId>
515                         <artifactId>org.springframework.aop</artifactId>
516                         <version>${spring.version}</version>
517                 </dependency>
518                 <dependency>
519                         <groupId>org.springframework</groupId>
520                         <artifactId>org.springframework.context</artifactId>
521                         <version>${spring.version}</version>
522                 </dependency>
523                 <dependency>
524                         <groupId>org.springframework</groupId>
525                         <artifactId>org.springframework.context.support</artifactId>
526                         <version>${spring.version}</version>
527                 </dependency>
528                 <dependency>
529                         <groupId>org.springframework</groupId>
530                         <artifactId>org.springframework.core</artifactId>
531                         <version>${spring.version}</version>
532                 </dependency>
533                 <dependency>
534                         <groupId>org.springframework</groupId>
535                         <artifactId>org.springframework.beans</artifactId>
536                         <version>${spring.version}</version>
537                 </dependency>
538                 <dependency>
539                         <groupId>org.springframework</groupId>
540                         <artifactId>org.springframework.expression</artifactId>
541                         <version>${spring.version}</version>
542                 </dependency>
543                 <dependency>
544                         <groupId>org.springframework</groupId>
545                         <artifactId>org.springframework.web</artifactId>
546                         <version>${spring.version}</version>
547                 </dependency>
548                 <dependency>
549                         <groupId>org.aopalliance</groupId>
550                         <artifactId>com.springsource.org.aopalliance</artifactId>
551                         <version>1.0.0</version>
552                 </dependency>
553                 <dependency>
554                         <groupId>org.springframework</groupId>
555                         <artifactId>org.springframework.web.servlet</artifactId>
556                         <version>${spring.version}</version>
557                 </dependency>
558                 <!-- Spring security -->
559                 <dependency>
560                         <groupId>org.springframework.security</groupId>
561                         <artifactId>spring-security-config</artifactId>
562                         <version>${spring-security.version}</version>
563                 </dependency>
564                 <dependency>
565                         <groupId>org.springframework.security</groupId>
566                         <artifactId>spring-security-core</artifactId>
567                         <version>${spring-security.version}</version>
568                 </dependency>
569                 <dependency>
570                         <groupId>org.springframework.security</groupId>
571                         <artifactId>spring-security-web</artifactId>
572                         <version>${spring-security.version}</version>
573                 </dependency>
574                 <dependency>
575                         <groupId>org.springframework.security</groupId>
576                         <artifactId>spring-security-taglibs</artifactId>
577                         <version>${spring-security.version}</version>
578                 </dependency>
579                 <dependency>
580                         <groupId>org.springframework</groupId>
581                         <artifactId>org.springframework.transaction</artifactId>
582                         <version>${spring-security.version}</version>
583                 </dependency>
584                 <!-- Visual VM hook -->
585                 <dependency>
586                         <groupId>org.ow2.chameleon.management</groupId>
587                         <artifactId>chameleon-mbeans</artifactId>
588                         <version>1.0.0</version>
589                 </dependency>
590                 <!-- Jersey for JAXRS -->
591                 <dependency>
592                         <groupId>com.sun.jersey</groupId>
593                         <artifactId>jersey-core</artifactId>
594                         <version>${jersey.version}</version>
595                 </dependency>
596                 <dependency>
597                         <groupId>com.sun.jersey</groupId>
598                         <artifactId>jersey-server</artifactId>
599                         <version>${jersey.version}</version>
600                 </dependency>
601                 <dependency>
602                         <groupId>com.sun.jersey</groupId>
603                         <artifactId>jersey-client</artifactId>
604                         <version>${jersey.version}</version>
605                 </dependency>
606                 <dependency>
607         <groupId>com.sun.jersey</groupId>
608         <artifactId>jersey-json</artifactId>
609         <version>${jersey.version}</version>
610       </dependency>
611                 <dependency>
612                         <groupId>org.opendaylight.yangtools.thirdparty</groupId>
613                         <artifactId>xtend-lib-osgi</artifactId>
614                         <version>2.4.3</version>
615                 </dependency>
616                 <dependency>
617                         <groupId>org.opendaylight.yangtools.model</groupId>
618                         <artifactId>opendaylight-l2-types</artifactId>
619                         <version>${opendaylight-l2-types.version}</version>
620                 </dependency>
621                 <dependency>
622                         <groupId>org.opendaylight.yangtools.model</groupId>
623                         <artifactId>yang-ext</artifactId>
624                         <version>${yang-ext.version}</version>
625                 </dependency>
626                 <dependency>
627                         <groupId>org.opendaylight.controller</groupId>
628                         <artifactId>sal-binding-broker-impl</artifactId>
629                         <version>1.0-SNAPSHOT</version>
630                 </dependency>
631                 <dependency>
632             <groupId>org.opendaylight.controller</groupId>
633             <artifactId>config-netconf-connector</artifactId>
634             <version>${netconf.version}</version>
635             <scope>test</scope>
636         </dependency>
637                 <dependency>
638           <groupId>org.opendaylight.controller.model</groupId>
639           <artifactId>model-inventory</artifactId>
640           <version>${mdsal.version}</version>
641         </dependency>
642                 <dependency>
643                         <groupId>org.javassist</groupId>
644                         <artifactId>javassist</artifactId>
645                         <version>3.17.1-GA</version>
646                 </dependency>
647                 <dependency>
648                           <groupId>org.opendaylight.controller.thirdparty</groupId>
649                           <artifactId>exificient</artifactId>
650                           <version>0.9.2-SNAPSHOT</version>
651                 </dependency>
652
653                 <dependency>
654                         <groupId>org.opendaylight.controller</groupId>
655                         <artifactId>config-manager</artifactId>
656                         <version>0.2.3-SNAPSHOT</version>
657                 </dependency>
658                 <dependency>
659                         <groupId>org.opendaylight.controller.thirdparty</groupId>
660                         <artifactId>com.sun.jersey.jersey-servlet</artifactId>
661                 </dependency>
662                 
663                 <dependency>
664       <groupId>com.fasterxml.jackson.core</groupId>
665       <artifactId>jackson-annotations</artifactId>
666       <version>${jackson.version}</version>
667     </dependency>
668
669     <dependency>
670       <groupId>com.fasterxml.jackson.core</groupId>
671       <artifactId>jackson-core</artifactId>
672       <version>${jackson.version}</version>
673     </dependency>
674
675     <dependency>
676       <groupId>com.fasterxml.jackson.core</groupId>
677       <artifactId>jackson-databind</artifactId>
678       <version>${jackson.version}</version>
679     </dependency>
680     
681     <dependency>
682        <groupId>com.fasterxml.jackson.jaxrs</groupId>
683        <artifactId>jackson-jaxrs-json-provider</artifactId>
684        <version>${jackson.version}</version>
685     </dependency>
686
687       <dependency>
688          <groupId>com.fasterxml.jackson.jaxrs</groupId>
689          <artifactId>jackson-jaxrs-base</artifactId>
690          <version>${jackson.version}</version>
691       </dependency>
692     
693                 <dependency>
694                         <groupId>org.codehaus.jackson</groupId>
695                         <artifactId>jackson-mapper-asl</artifactId>
696                         <version>${old-jackson.version}</version>
697                 </dependency>
698                 <dependency>
699                         <groupId>org.codehaus.jackson</groupId>
700                         <artifactId>jackson-core-asl</artifactId>
701                         <version>${old-jackson.version}</version>
702                 </dependency>
703                 <dependency>
704                         <groupId>org.codehaus.jackson</groupId>
705                         <artifactId>jackson-jaxrs</artifactId>
706                         <version>${old-jackson.version}</version>
707                 </dependency>
708                 <dependency>
709                         <groupId>org.codehaus.jackson</groupId>
710                         <artifactId>jackson-xc</artifactId>
711                         <version>${old-jackson.version}</version>
712                 </dependency>
713                 <dependency>
714                         <groupId>org.codehaus.jettison</groupId>
715                         <artifactId>jettison</artifactId>
716                         <version>1.3.3</version>
717                 </dependency>
718                 <dependency>
719                         <groupId>org.opendaylight.controller</groupId>
720                         <artifactId>commons.northbound</artifactId>
721                         <version>0.4.1-SNAPSHOT</version>
722                 </dependency>
723                 <dependency>
724                         <groupId>org.opendaylight.controller</groupId>
725                         <artifactId>bundlescanner</artifactId>
726                         <version>0.4.1-SNAPSHOT</version>
727                 </dependency>
728
729                 <dependency>
730                         <groupId>org.opendaylight.controller</groupId>
731                         <artifactId>bundlescanner.implementation</artifactId>
732                         <version>0.4.1-SNAPSHOT</version>
733                 </dependency>
734                 <dependency>
735                         <groupId>org.opendaylight.controller</groupId>
736                         <artifactId>switchmanager</artifactId>
737                 </dependency>
738                 <dependency>
739                         <groupId>org.opendaylight.controller</groupId>
740                         <artifactId>switchmanager.implementation</artifactId>
741                         <version>0.4.1-SNAPSHOT</version>
742                 </dependency>
743                 <dependency>
744                         <groupId>org.opendaylight.controller</groupId>
745                         <artifactId>connectionmanager</artifactId>
746                         <version>0.1.1-SNAPSHOT</version>
747                 </dependency>
748                 <dependency>
749                         <groupId>org.opendaylight.controller</groupId>
750                         <artifactId>connectionmanager.implementation</artifactId>
751                         <version>0.1.1-SNAPSHOT</version>
752                 </dependency>
753                 <dependency>
754                         <groupId>org.opendaylight.controller</groupId>
755                         <artifactId>configuration</artifactId>
756                         <version>0.4.1-SNAPSHOT</version>
757                 </dependency>
758                 <dependency>
759                         <groupId>org.opendaylight.controller</groupId>
760                         <artifactId>configuration.implementation</artifactId>
761                         <version>0.4.1-SNAPSHOT</version>
762                 </dependency>
763                 <dependency>
764                         <groupId>org.opendaylight.controller</groupId>
765                         <artifactId>usermanager</artifactId>
766                         <version>0.4.1-SNAPSHOT</version>
767                 </dependency>
768                 <dependency>
769                         <groupId>org.opendaylight.controller</groupId>
770                         <artifactId>usermanager.implementation</artifactId>
771                         <version>0.4.1-SNAPSHOT</version>
772                 </dependency>
773                 <dependency>
774                         <groupId>org.opendaylight.controller</groupId>
775                         <artifactId>sal.connection</artifactId>
776                         <version>0.1.1-SNAPSHOT</version>
777                 </dependency>
778                 <dependency>
779                         <groupId>org.opendaylight.controller</groupId>
780                         <artifactId>sal.connection.implementation</artifactId>
781                         <version>0.1.1-SNAPSHOT</version>
782                 </dependency>
783                 <dependency>
784                         <groupId>org.opendaylight.controller.thirdparty</groupId>
785                         <artifactId>org.apache.catalina.filters.CorsFilter</artifactId>
786                 </dependency>
787                 <dependency>
788                         <groupId>org.opendaylight.controller.thirdparty</groupId>
789                         <artifactId>net.sf.jung2</artifactId>
790                 </dependency>
791                 <dependency>
792                         <groupId>org.opendaylight.controller</groupId>
793                         <artifactId>logging.bridge</artifactId>
794                         <version>0.4.1-SNAPSHOT</version>
795                 </dependency>
796                 <!-- Gemini Web -->
797                 <dependency>
798                         <groupId>geminiweb</groupId>
799                         <artifactId>org.eclipse.gemini.web.core</artifactId>
800                         <version>${geminiweb.version}</version>
801                 </dependency>
802                 <dependency>
803                         <groupId>geminiweb</groupId>
804                         <artifactId>org.eclipse.gemini.web.extender</artifactId>
805                         <version>${geminiweb.version}</version>
806                 </dependency>
807                 <dependency>
808                         <groupId>geminiweb</groupId>
809                         <artifactId>org.eclipse.gemini.web.tomcat</artifactId>
810                         <version>${geminiweb.version}</version>
811                 </dependency>
812                 <dependency>
813                         <groupId>geminiweb</groupId>
814                         <artifactId>org.eclipse.virgo.kernel.equinox.extensions</artifactId>
815                         <version>${virgo.version}</version>
816                 </dependency>
817                 <dependency>
818                         <groupId>geminiweb</groupId>
819                         <artifactId>org.eclipse.virgo.util.common</artifactId>
820                         <version>${virgo.version}</version>
821                 </dependency>
822                 <dependency>
823                         <groupId>geminiweb</groupId>
824                         <artifactId>org.eclipse.virgo.util.io</artifactId>
825                         <version>${virgo.version}</version>
826                 </dependency>
827                 <dependency>
828                         <groupId>geminiweb</groupId>
829                         <artifactId>org.eclipse.virgo.util.math</artifactId>
830                         <version>${virgo.version}</version>
831                 </dependency>
832                 <dependency>
833                         <groupId>geminiweb</groupId>
834                         <artifactId>org.eclipse.virgo.util.osgi</artifactId>
835                         <version>${virgo.version}</version>
836                 </dependency>
837                 <dependency>
838                         <groupId>geminiweb</groupId>
839                         <artifactId>org.eclipse.virgo.util.osgi.manifest</artifactId>
840                         <version>${virgo.version}</version>
841                 </dependency>
842                 <dependency>
843                         <groupId>geminiweb</groupId>
844                         <artifactId>org.eclipse.virgo.util.parser.manifest</artifactId>
845                         <version>${virgo.version}</version>
846                 </dependency>
847                 <dependency>
848                         <groupId>org.opendaylight.controller</groupId>
849                         <artifactId>security</artifactId>
850                         <version>0.4.1-SNAPSHOT</version>
851                 </dependency>
852                 <dependency>
853                         <groupId>org.opendaylight.controller</groupId>
854                         <artifactId>sal-connector-api</artifactId>
855                         <version>1.0-SNAPSHOT</version>
856                 </dependency>
857                 <dependency>
858                         <groupId>org.opendaylight.yangtools.thirdparty</groupId>
859                         <artifactId>antlr4-runtime-osgi-nohead</artifactId>
860                         <version>4.0</version>
861                 </dependency>
862                 <dependency>
863                         <groupId>org.opendaylight.yangtools</groupId>
864                         <artifactId>yang-binding</artifactId>
865                 </dependency>
866                 <dependency>
867                         <groupId>org.opendaylight.yangtools</groupId>
868                         <artifactId>yang-common</artifactId>
869                 </dependency>
870                 <dependency>
871                         <groupId>org.opendaylight.yangtools.model</groupId>
872                         <artifactId>ietf-inet-types</artifactId>
873                 </dependency>
874                 <dependency>
875                         <groupId>org.opendaylight.yangtools.model</groupId>
876                         <artifactId>ietf-yang-types</artifactId>
877                 </dependency>
878                 <dependency>
879                         <groupId>org.opendaylight.controller</groupId>
880                         <artifactId>config-api</artifactId>
881                         <version>0.2.3-SNAPSHOT</version>
882                 </dependency>
883
884         <dependency>
885             <groupId>xml-apis</groupId>
886             <artifactId>xml-apis</artifactId>
887             <version>1.4.01</version>
888         </dependency>
889     </dependencies>
890
891         <profiles>
892                 <profile>
893                         <id>default</id>
894                         <activation>
895                                 <activeByDefault>true</activeByDefault>
896                         </activation>
897                         <properties>
898                                 <skipIntegrationTest>false</skipIntegrationTest>
899                         </properties>
900                 </profile>
901                 <profile>
902                         <id>skipTestCompileAndRun</id>
903                         <activation>
904                                 <property>
905                                         <name>maven.test.skip</name>
906                                         <value>true</value>
907                                 </property>
908                         </activation>
909                         <properties>
910                                 <skipIntegrationTest>true</skipIntegrationTest>
911                         </properties>
912                 </profile>
913                 <profile>
914                         <id>skipTestRun</id>
915                         <activation>
916                                 <property>
917                                         <name>skipTests</name>
918                                 </property>
919                         </activation>
920                         <properties>
921                                 <skipIntegrationTest>true</skipIntegrationTest>
922                         </properties>
923                 </profile>
924         </profiles>
925 </project>